/* =========================================================
   Eftel Cloud - AWS-inspired theme
   Built on top of the existing template assets (assets/img).
   ========================================================= */

:root {
    --ef-navy: #232f3e;
    --ef-navy-2: #16191f;
    --ef-navy-3: #0f1b2d;
    --ef-orange: #ff9900;
    --ef-orange-hover: #ec7211;
    --ef-blue: #0073bb;
    --ef-blue-hover: #1a73e8;
    --ef-text: #232f3e;
    --ef-muted: #545b64;
    --ef-bg: #f2f3f3;
    --ef-border: #e6e8eb;
    --ef-radius: 8px;
    --ef-shadow: 0 2px 8px rgba(15, 27, 45, .08);
    --ef-shadow-lg: 0 12px 30px rgba(15, 27, 45, .12);
}

* { scroll-behavior: smooth; }

body {
    font-family: "Inter", "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    color: var(--ef-text);
    background: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--ef-navy); }

a { color: var(--ef-blue); text-decoration: none; }
a:hover { color: var(--ef-blue-hover); }

/* ===== Top utility bar ===== */
.ef-topbar {
    background: var(--ef-navy-2);
    color: #cdd3da;
    font-size: .8rem;
    padding: .35rem 0;
}
.ef-topbar-text i { color: var(--ef-orange); }

/* ===== Navbar ===== */
.ef-navbar {
    background: var(--ef-navy);
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ef-navbar .container {
    min-height: 54px;
    display: flex;
    align-items: center;
}
.ef-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-right: 1rem;
}
.ef-brand-logo {
    height: 34px;
    width: auto;
    display: block;
}
.ef-brand-mark {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--ef-orange);
    color: var(--ef-navy);
    font-weight: 800;
    border-radius: 6px;
    margin-right: 8px;
}
.ef-brand-text {
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -.3px;
}
.ef-brand-cloud { color: var(--ef-orange); }
.ef-smile { margin-left: 4px; }

.ef-toggler {
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 6px;
    padding: .3rem .6rem;
    margin-left: auto;
}

.ef-nav { list-style: none; display: flex; gap: .85rem; margin: 0; padding: 0; align-items: center; }
.ef-nav-link {
    color: #e6e9ed;
    font-size: .82rem;
    font-weight: 600;
    padding: .3rem 0;
    position: relative;
    white-space: nowrap;
    transition: color .15s ease;
}
.ef-nav-link::after {
    content: "";
    position: absolute; left: 0; bottom: -2px;
    width: 0; height: 2px; background: var(--ef-orange);
    transition: width .2s ease;
}
.ef-nav-link:hover, .ef-nav-link.active { color: #fff; }
.ef-nav-link:hover::after, .ef-nav-link.active::after { width: 100%; }

.ef-nav-actions { display: flex; gap: .4rem; margin-left: .9rem; align-items: center; }
.ef-nav-greeting { color: #cdd3da; font-size: .8rem; font-weight: 600; }

/* ===== Dropdowns ===== */
.ef-nav-item.dropdown { position: relative; }
.ef-nav-link.dropdown-toggle {
    background: transparent; border: 0; font-family: inherit; cursor: pointer;
}
.ef-nav-link.dropdown-toggle::after {
    content: ""; display: inline-block; width: .42em; height: .42em;
    margin-left: .55em; vertical-align: middle;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}
.ef-nav-item.dropdown.show .ef-nav-link.dropdown-toggle::after,
.ef-nav-link.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(225deg) translateY(-1px);
}
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 244px;
    margin-top: .65rem; padding: .5rem;
    background: #fff; border: 1px solid var(--ef-border); border-radius: 12px;
    box-shadow: var(--ef-shadow-lg); list-style: none; z-index: 1040;
}
.dropdown-menu .dropdown-item {
    display: block; padding: .58rem .8rem; border-radius: 8px;
    color: var(--ef-navy); font-size: .9rem; font-weight: 600; text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
    background: rgba(255,153,0,.12); color: var(--ef-orange-hover);
}

/* ===== Small button (mobile CTA) ===== */
.ef-btn-sm { padding: .4rem .7rem; font-size: .8rem; }

/* ===== Documentation hub ===== */
.ef-docs { display: grid; grid-template-columns: 250px 1fr; gap: 2.5rem; align-items: start; }
.ef-docs-side { position: sticky; top: 84px; }
.ef-docs-nav .ef-docs-cat {
    font-weight: 700; text-transform: uppercase; font-size: .75rem; letter-spacing: 1px;
    color: var(--ef-navy); margin: 1.1rem 0 .4rem;
}
.ef-docs-nav .ef-docs-cat:first-child { margin-top: 0; }
.ef-docs-nav ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.ef-docs-nav ul li a { display: block; color: var(--ef-muted); padding: .28rem 0; font-size: .92rem; text-decoration: none; }
.ef-docs-nav ul li a:hover { color: var(--ef-orange-hover); }
.ef-docs-cat-title { font-size: 1.4rem; margin: 1.8rem 0 1rem; }
.ef-docs-cat-title:first-child { margin-top: 0; }
.doc-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.doc-card { height: 100%; display: flex; flex-direction: column; }
.doc-card h4 { color: var(--ef-navy); margin-bottom: .4rem; }
.ef-doc-article { margin-top: 2.2rem; scroll-margin-top: 90px; }
.ef-doc-article h3 { font-size: 1.15rem; color: var(--ef-navy); }
.ef-doc-article p { color: var(--ef-muted); max-width: 760px; }
@media (max-width: 991.98px) {
    .ef-docs { grid-template-columns: 1fr; gap: 1.5rem; }
    .ef-docs-side { position: static; }
    .doc-cards { grid-template-columns: 1fr; }
}

/* ===== Focus visibility (accessibility) ===== */
.ef-brand:focus-visible,
.ef-nav-link:focus-visible,
.ef-btn:focus-visible,
.ef-toggler:focus-visible,
.dropdown-item:focus-visible {
    outline: 2px solid var(--ef-orange);
    outline-offset: 2px;
}

/* ===== Buttons ===== */
.ef-btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: .82rem;
    padding: .42rem .85rem;
    border-radius: var(--ef-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .15s ease;
    text-decoration: none;
    white-space: nowrap;
}
.ef-btn-orange { background: var(--ef-orange); color: var(--ef-navy); }
.ef-btn-orange:hover { background: var(--ef-orange-hover); color: #fff; }
.ef-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.ef-btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.ef-btn-dark { background: var(--ef-navy); color: #fff; }
.ef-btn-dark:hover { background: var(--ef-navy-2); color: #fff; }
.ef-btn-outline { background: #fff; color: var(--ef-navy); border-color: var(--ef-border); }
.ef-btn-outline:hover { border-color: var(--ef-orange); color: var(--ef-orange-hover); }
.ef-btn-lg { padding: .75rem 1.6rem; font-size: 1rem; }

/* ===== Layout helpers ===== */
.ef-section { padding: 4.5rem 0; }
.ef-section--alt { background: var(--ef-bg); }
.ef-section--dark {
    background: linear-gradient(160deg, var(--ef-navy) 0%, var(--ef-navy-3) 100%);
    color: #e6e9ed;
}
.ef-section--dark h1, .ef-section--dark h2, .ef-section--dark h3 { color: #fff; }

.ef-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--ef-orange);
    margin-bottom: .5rem;
}
.ef-section-title { font-size: 2rem; margin-bottom: .5rem; }
.ef-section-lead { color: var(--ef-muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.ef-section--dark .ef-section-lead { color: #c4ccd6; }

/* ===== Hero ===== */
.ef-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at 86% -18%, rgba(255, 153, 0, .16), transparent 55%),
        radial-gradient(760px 440px at 4% 116%, rgba(0, 115, 187, .18), transparent 55%),
        linear-gradient(158deg, #1b2735 0%, var(--ef-navy) 46%, #18222f 100%);
    color: #fff;
    padding: 3.5rem 0 4rem;
}
/* Malla discreta de infraestructura/cloud (sin nuevos archivos). */
.ef-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 75%);
            mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 75%);
    opacity: .7;
    pointer-events: none;
}
.ef-hero .container { position: relative; z-index: 1; }
.ef-hero .row { column-gap: 3rem; row-gap: 2.5rem; }
.ef-hero h1 {
    color: #fff;
    font-size: 3.25rem;
    line-height: 1.05;
    letter-spacing: -0.6px;
    font-weight: 800;
    margin-bottom: 1rem;
}
.ef-hero .lead {
    color: #cdd3da;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 1.75rem;
}
.ef-hero-visual {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 26px 56px -26px rgba(0, 0, 0, .55);
}
.ef-console-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1rem;
}
.ef-console-title { display: flex; align-items: center; gap: .7rem; }
.ef-console-title strong { color: #fff; font-size: 1.05rem; display: block; line-height: 1.1; letter-spacing: -.2px; }
.ef-console-title small { color: #9aa3ad; font-size: .78rem; }
.ef-console-icon {
    width: 40px; height: 40px; border-radius: 11px;
    background: linear-gradient(135deg, rgba(255,153,0,.22), rgba(255,153,0,.12));
    color: var(--ef-orange);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem;
    box-shadow: inset 0 0 0 1px rgba(255,153,0,.18);
}
.ef-console-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1rem; }
.ef-console-stat {
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 12px; padding: .85rem .9rem;
    display: flex; align-items: center; gap: .7rem;
    box-shadow: 0 10px 22px -16px rgba(0, 0, 0, .55);
}
.ef-console-stat > i {
    width: 36px; height: 36px; border-radius: 9px; flex: 0 0 36px;
    background: rgba(255, 153, 0, .12); color: var(--ef-orange-hover);
    display: inline-flex; align-items: center; justify-content: center; font-size: .95rem;
}
.ef-console-stat span { display: block; font-weight: 800; font-size: 1.15rem; color: var(--ef-navy); line-height: 1.1; white-space: nowrap; }
.ef-console-stat small { color: var(--ef-muted); font-size: .74rem; line-height: 1.2; }
.ef-hero-visual .ef-btn-orange {
    font-weight: 700;
    box-shadow: 0 14px 30px -16px rgba(255, 153, 0, .8);
}

/* domain search box */
.ef-domain-search {
    display: flex; align-items: stretch; gap: .5rem; flex-wrap: wrap;
    background: #fff;
    padding: .5rem;
    border-radius: 14px;
    box-shadow: 0 20px 44px -22px rgba(15, 27, 45, .5);
}
.ef-domain-search input {
    flex: 1 1 220px;
    border: 1px solid var(--ef-border);
    border-radius: 10px;
    padding: .7rem .95rem;
    font-size: 1rem;
    min-width: 0;
}
.ef-domain-search input:focus { outline: 2px solid var(--ef-orange); border-color: var(--ef-orange); box-shadow: none; }
.ef-domain-search .ef-btn {
    border-radius: 10px;
    padding: .7rem 1.5rem;
    font-weight: 700;
    flex: 0 0 auto;
}

/* ===== Cards ===== */
.ef-card {
    background: #fff;
    border: 1px solid var(--ef-border);
    border-radius: var(--ef-radius);
    padding: 1.6rem;
    box-shadow: var(--ef-shadow);
    transition: transform .15s ease, box-shadow .15s ease;
    height: 100%;
}
.ef-card:hover { transform: translateY(-4px); box-shadow: var(--ef-shadow-lg); }
.ef-card-icon {
    width: 52px; height: 52px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,153,0,.12);
    color: var(--ef-orange-hover);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.ef-card h4 { font-size: 1.15rem; margin-bottom: .4rem; }
.ef-card p { color: var(--ef-muted); margin-bottom: 1rem; }
.ef-card .ef-link { font-weight: 600; }

/* feature row with icon */
.ef-feature { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.ef-feature .ef-feature-icon {
    flex: 0 0 46px; width: 46px; height: 46px;
    border-radius: 10px; background: rgba(0,115,187,.1);
    color: var(--ef-blue); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.ef-feature h5 { font-size: 1rem; margin-bottom: .2rem; }
.ef-feature p { color: var(--ef-muted); margin: 0; font-size: .95rem; }

/* ===== Stats ===== */
.ef-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.ef-stat .ef-stat-num { font-size: 2.4rem; font-weight: 800; color: var(--ef-orange); }
.ef-stat .ef-stat-label { color: #c4ccd6; }

/* ===== Pricing ===== */
.ef-price-card {
    background: #fff; border: 1px solid var(--ef-border); border-radius: 12px;
    padding: 1.8rem; box-shadow: var(--ef-shadow); position: relative; height: 100%;
}
.ef-price-card.featured { border: 2px solid var(--ef-orange); }
.ef-price-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--ef-orange); color: var(--ef-navy);
    font-size: .75rem; font-weight: 700; padding: .25rem .8rem; border-radius: 20px;
}
.ef-price-name { font-size: 1.2rem; font-weight: 700; }
.ef-price-amount { font-size: 2.6rem; font-weight: 800; color: var(--ef-navy); }
.ef-price-amount span { font-size: 1rem; color: var(--ef-muted); font-weight: 500; }
.ef-price-list { list-style: none; padding: 0; margin: 1rem 0 1.4rem; }
.ef-price-list li { padding: .35rem 0; border-bottom: 1px dashed var(--ef-border); }
.ef-price-list li i { color: var(--ef-orange); margin-right: .5rem; }

/* ===== Forms ===== */
.ef-form .form-control, .ef-form .form-select {
    border-radius: 6px; padding: .6rem .8rem; border-color: var(--ef-border);
}
.ef-form .form-control:focus { border-color: var(--ef-orange); box-shadow: 0 0 0 .2rem rgba(255,153,0,.2); }
.ef-form label { font-weight: 600; }

/* ===== Domain results ===== */
.ef-domain-result {
    display: flex; align-items: center; justify-content: space-between;
    padding: .9rem 1rem; border: 1px solid var(--ef-border); border-radius: 8px; margin-bottom: .6rem;
}
.ef-domain-result .ef-domain-name { font-weight: 700; }
.ef-badge-ok { background: #d7f5e3; color: #137a45; padding: .2rem .6rem; border-radius: 20px; font-size: .8rem; font-weight: 700; }
.ef-badge-taken { background: #fde2e2; color: #b42318; padding: .2rem .6rem; border-radius: 20px; font-size: .8rem; font-weight: 700; }
.ef-tld-pills { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-top: .9rem; }
.ef-tld-pills .ef-pill { border: 1px solid var(--ef-border); border-radius: 20px; padding: .2rem .7rem; font-size: .85rem; cursor: pointer; }
.ef-tld-pills .ef-pill.active { background: var(--ef-orange); color: var(--ef-navy); border-color: var(--ef-orange); }
.ef-pill--ondark {
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .06);
    border-radius: 20px; padding: .3rem .8rem; font-size: .85rem;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.ef-pill--ondark:hover {
    background: rgba(255, 153, 0, .16); border-color: rgba(255, 153, 0, .55); color: #fff;
}

.ef-tld-label { color: #aeb6c0; font-size: .85rem; font-weight: 600; }

/* Trust / integrations bar — transición suave desde el hero oscuro */
.ef-trust {
    background: linear-gradient(180deg, #ffffff 0%, var(--ef-bg) 62%);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 -22px 46px -30px rgba(0, 0, 0, .55);
}
.ef-trust-title {
    color: var(--ef-muted);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.ef-trust-logos span {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: .3px;
    color: #8b94a3;
    transition: color .15s ease;
}
.ef-trust-logos span:hover { color: var(--ef-navy); }

/* ===== Breadcrumb / page header ===== */
.ef-pagehead {
    background: linear-gradient(160deg, var(--ef-navy) 0%, var(--ef-navy-3) 100%);
    color: #fff; padding: 4rem 0 3.5rem;
}
.ef-pagehead h1 { color: #fff; }
.ef-breadcrumb { color: #aeb6c0; font-size: .85rem; }
.ef-breadcrumb a { color: #cdd3da; }

/* ===== Alert ===== */
.ef-alert { padding: .8rem 1rem; border-radius: 8px; margin-bottom: 1rem; }
.ef-alert-success { background: #d7f5e3; color: #137a45; }
.ef-alert-error { background: #fde2e2; color: #b42318; }
.ef-alert-info { background: #e3f0fb; color: #0b5cab; }

/* ===== Steps ===== */
.ef-step { text-align: center; padding: 1rem; }
.ef-step-num {
    width: 48px; height: 48px; line-height: 48px; border-radius: 50%;
    background: var(--ef-orange); color: var(--ef-navy); font-weight: 800; margin: 0 auto .8rem;
}

/* ===== Footer ===== */
.ef-footer { background: var(--ef-navy-2); color: #c4ccd6; padding: 3.5rem 0 1.5rem; }
.ef-footer-text { color: #9aa3ad; font-size: .92rem; }
.ef-footer-title { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.ef-footer-links { list-style: none; padding: 0; }
.ef-footer-links li { margin-bottom: .5rem; }
.ef-footer-links a { color: #c4ccd6; font-size: .92rem; }
.ef-footer-links a:hover { color: var(--ef-orange); }
.ef-footer-contact div { margin-bottom: .4rem; font-size: .9rem; }
.ef-footer-contact i { color: var(--ef-orange); width: 22px; }
.ef-footer-rule { border-color: rgba(255,255,255,.1); margin: 2rem 0 1rem; }
.ef-footer-bottom { font-size: .85rem; color: #9aa3ad; }
.ef-footer-social a { color: #c4ccd6; margin-left: .8rem; font-size: 1.1rem; }
.ef-footer-social a:hover { color: var(--ef-orange); }
.ef-newsletter { display: flex; gap: .5rem; }
.ef-newsletter .form-control { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: #fff; }

/* ===== Responsive ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .ef-brand { margin-right: .5rem; }
    .ef-brand-text { font-size: .95rem; }
    .ef-nav { gap: .55rem; }
    .ef-nav-link { font-size: .76rem; }
    .ef-nav-actions { margin-left: .5rem; gap: .35rem; }
    .ef-btn { padding: .35rem .6rem; font-size: .78rem; }
}
@media (max-width: 991.98px) {
    .ef-navbar .container { flex-wrap: wrap; padding-top: .6rem; padding-bottom: .6rem; }
    .ef-nav { flex-direction: column; align-items: stretch; width: 100%; gap: .15rem; margin-top: .5rem; }
    .ef-nav-item { width: 100%; }
    .ef-nav-link { padding: .55rem .25rem; font-size: .95rem; }
    .ef-nav-actions { margin: .8rem 0 0; width: 100%; }
    .ef-nav-actions .ef-btn { flex: 1; }
    /* Submenús desplegables como bloques dentro del menú móvil (sin scroll horizontal) */
    .ef-nav-item.dropdown .dropdown-menu {
        position: static !important; width: 100%; min-width: 0;
        margin: .15rem 0 .35rem; padding: .25rem .5rem;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.12);
        box-shadow: none;
    }
    .dropdown-menu .dropdown-item { color: #e6e9ed; padding: .55rem .75rem; }
    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus,
    .dropdown-menu .dropdown-item.active { background: rgba(255,153,0,.18); color: #fff; }
    .ef-hero h1 { font-size: 2.1rem; }
}

/* ===== Promo ribbon ===== */
.ef-promo {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--ef-orange); color: var(--ef-navy);
    font-weight: 700; font-size: .85rem;
    padding: .35rem .9rem; border-radius: 30px; margin-bottom: 1rem;
}
.ef-promo i { font-size: .8rem; }

/* ===== Split feature (image + text) ===== */
.ef-split-img {
    border-radius: 14px;
    box-shadow: var(--ef-shadow-lg);
    background: #fff;
    padding: 1rem;
    width: 100%;
    height: auto;
}

/* ===== Testimonials ===== */
.ef-testimonial {
    background: #fff; border: 1px solid var(--ef-border); border-radius: var(--ef-radius);
    padding: 1.6rem; box-shadow: var(--ef-shadow); height: 100%;
}
.ef-testimonial p { color: var(--ef-muted); font-style: italic; }
.ef-testimonial-author { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.ef-testimonial-author img {
    width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--ef-orange);
}
.ef-testimonial-author strong { display: block; color: var(--ef-navy); }
.ef-testimonial-author small { color: var(--ef-muted); }

/* ===== Hosting product list ===== */
.ef-product {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem; border: 1px solid var(--ef-border); border-radius: var(--ef-radius);
    background: #fff; transition: all .15s ease;
}
.ef-product:hover { border-color: var(--ef-orange); box-shadow: var(--ef-shadow); }
.ef-product-icon {
    width: 46px; height: 46px; flex: 0 0 46px; border-radius: 10px;
    background: rgba(255,153,0,.12); color: var(--ef-orange-hover);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.ef-product-body { flex: 1; }
.ef-product-body strong { display: block; color: var(--ef-navy); }
.ef-product-body small { color: var(--ef-muted); }
.ef-product-price { font-weight: 800; color: var(--ef-orange); white-space: nowrap; }

/* ===== Support box ===== */
.ef-support-box {
    background: #fff; border-radius: 14px; box-shadow: var(--ef-shadow-lg);
    padding: 2rem; display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
}
.ef-support-box img { width: 120px; height: auto; }

/* ===== Hero responsive refinements ===== */
@media (max-width: 991.98px) {
    .ef-hero { padding: 4.5rem 0 3rem; }
    .ef-hero h1 { font-size: 2.35rem; }
    .ef-hero .lead { font-size: 1.05rem; }
    .ef-hero .row { column-gap: 0; }
}
@media (max-width: 575.98px) {
    .ef-hero { padding: 4rem 0 2.5rem; }
    .ef-hero h1 { font-size: 2rem; line-height: 1.08; }
    .ef-hero .lead { margin-bottom: 1.4rem; }
    .ef-domain-search { padding: .4rem; gap: .4rem; }
    .ef-domain-search input { flex: 1 1 100%; }
    .ef-domain-search .ef-btn { flex: 1 1 100%; }
    .ef-console-stat { padding: .7rem .75rem; }
    .ef-console-stat span { font-size: 1.05rem; }
    .ef-trust { padding: 2.25rem 0; }
}
@media (max-width: 380px) {
    .ef-hero h1 { font-size: 1.75rem; }
    .ef-console-stat small { font-size: .7rem; }
}
.ef-support-contact a { color: var(--ef-navy); font-weight: 700; }
