:root {
    --bg: #f4f8fc;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --line: rgba(12, 42, 82, 0.12);
    --line-strong: rgba(12, 42, 82, 0.2);
    --text: #16253b;
    --text-soft: #5f6f84;
    --brand: #0a3871;
    --brand-dark: #07264d;
    --brand-soft: #dfeaf8;
    --accent: #f0b34b;
    --accent-strong: #d58c14;
    --success: #1fa971;
    --danger: #d94141;
    --shadow-soft: 0 18px 46px rgba(8, 31, 61, 0.1);
    --shadow-strong: 0 28px 90px rgba(7, 26, 51, 0.18);
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(10, 56, 113, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(240, 179, 75, 0.12), transparent 22%),
        linear-gradient(180deg, #fbfdff 0%, var(--bg) 48%, #f7fbff 100%);
}

a {
    text-decoration: none;
}

.text-soft {
    color: var(--text-soft);
}

.section-padding {
    padding: 6rem 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(10, 56, 113, 0.08);
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    color: var(--brand);
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-top: 1rem;
}

.navbar {
    background: rgba(10, 56, 113, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 32px rgba(7, 26, 51, 0.18);
}

.navbar-brand {
    line-height: 1.1;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #ffffff;
}

.language-switcher button {
    background: none;
    border: none;
    font-size: 1.5rem;
    margin-left: 10px;
}

.lang {
    display: none;
}

.lang:not(.active) {
    display: none !important;
}

.lang.active {
    display: block;
}

span.lang.active {
    display: inline !important;
}

.hero {
    position: relative;
    min-height: 96vh;
    padding-top: 7.5rem;
    padding-bottom: 4rem;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(7, 26, 51, 0.88), rgba(10, 56, 113, 0.74) 56%, rgba(11, 26, 48, 0.82) 100%),
        url("../img/hero.jpg") center/cover no-repeat;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -120px;
    background: radial-gradient(circle, rgba(240, 179, 75, 0.34), transparent 68%);
}

.hero::after {
    width: 300px;
    height: 300px;
    left: -100px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(31, 169, 113, 0.18), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.7rem, 5.2vw, 5.3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 1.2rem 0 1.2rem;
}

.hero-lead {
    font-size: clamp(1.12rem, 1.8vw, 1.4rem);
    color: rgba(239, 245, 252, 0.92);
    max-width: 700px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 2rem 0;
}

.hero-point {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-point i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.btn {
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--danger), #b62828);
    border: none;
    box-shadow: 0 16px 38px rgba(217, 65, 65, 0.26);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #17845c);
    border: none;
    box-shadow: 0 18px 38px rgba(31, 169, 113, 0.24);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(10px);
}

.hero-panel-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.hero-price {
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin: 0.6rem 0 0.7rem;
}

.hero-mini-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.hero-mini-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.floating-band {
    margin-top: -2.6rem;
    position: relative;
    z-index: 2;
}

.band-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.35rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.band-item {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,244,250,0.96));
    border: 1px solid rgba(10, 56, 113, 0.08);
}

.band-item strong {
    display: block;
    color: var(--brand);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-item {
    padding: 1.2rem 1.1rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.trust-item strong {
    display: block;
    color: var(--brand);
    margin-bottom: 0.35rem;
}

.public-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.public-stat-card {
    padding: 1.2rem 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(236,244,252,0.96));
    border: 1px solid rgba(10, 56, 113, 0.08);
    box-shadow: var(--shadow-soft);
}

.public-stat-card strong,
.public-stat-card > span {
    display: block;
}

.public-stat-card strong {
    color: var(--brand);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.45rem;
    letter-spacing: -0.04em;
}

.public-stat-card > span {
    color: var(--text-soft);
    font-weight: 600;
}

.card-surface {
    height: 100%;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 56, 113, 0.1);
    color: var(--brand);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.story-panel {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(10, 56, 113, 0.08), rgba(255,255,255,0.92));
    border: 1px solid rgba(10, 56, 113, 0.08);
    box-shadow: var(--shadow-soft);
}

.founder-card {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(10, 56, 113, 0.08), rgba(255,255,255,0.96));
    border: 1px solid rgba(10, 56, 113, 0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.craft-note {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(10, 56, 113, 0.08), rgba(255,255,255,0.96));
    border: 1px solid rgba(10, 56, 113, 0.08);
    box-shadow: var(--shadow-soft);
}

.founder-photo-wrap {
    position: relative;
    width: min(100%, 360px);
    margin: 0 auto;
}

.founder-photo-wrap::after {
    content: "";
    position: absolute;
    inset: auto 18px -18px 18px;
    height: 36px;
    border-radius: 999px;
    background: rgba(7, 26, 51, 0.16);
    filter: blur(18px);
    z-index: 0;
}

.founder-photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 26px;
    border: 6px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-strong);
    margin: 0 auto;
}

.founder-copy {
    width: min(100%, 720px);
}

.founder-copy .section-title {
    max-width: 720px;
}

.founder-lead {
    margin-bottom: 1rem;
}

.founder-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.5rem 0 0;
}

.founder-meta-item {
    min-width: 220px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(10, 56, 113, 0.08);
}

.founder-meta-item strong,
.founder-meta-item span {
    display: block;
}

.process-step {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.process-step-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hosting-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    align-items: stretch;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(240, 179, 75, 0.2), transparent 30%),
        linear-gradient(135deg, rgba(10, 56, 113, 0.1), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(10, 56, 113, 0.1);
    box-shadow: var(--shadow-soft);
}

.hosting-copy {
    align-self: center;
}

.hosting-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.hosting-stack {
    display: grid;
    gap: 0.85rem;
}

.hosting-stack-card {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(10, 56, 113, 0.1);
    box-shadow: 0 12px 32px rgba(7, 26, 51, 0.08);
}

.hosting-stack-card.active {
    background: linear-gradient(135deg, rgba(10, 56, 113, 0.94), rgba(7, 38, 77, 0.9));
    color: #ffffff;
}

.hosting-stack-card i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 16px;
    background: rgba(10, 56, 113, 0.1);
    color: var(--brand);
    font-size: 1.25rem;
}

.hosting-stack-card.active i {
    background: rgba(240, 179, 75, 0.18);
    color: var(--accent);
}

.hosting-stack-card strong,
.hosting-stack-card span {
    display: block;
}

.hosting-stack-card strong {
    margin-bottom: 0.2rem;
}

.hosting-stack-card span {
    color: var(--text-soft);
}

.hosting-stack-card.active span {
    color: rgba(255, 255, 255, 0.74);
}

.hosting-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.domain-finder {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 1.2rem;
    align-items: center;
    margin-top: 1.2rem;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(31, 169, 113, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 252, 0.96));
    border: 1px solid rgba(10, 56, 113, 0.1);
    box-shadow: var(--shadow-soft);
}

.domain-finder h3 {
    color: var(--brand);
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0.85rem 0 0.5rem;
}

.domain-finder-form {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(10, 56, 113, 0.08);
}

.domain-input-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 0.65rem;
}

.domain-input-wrap input,
.domain-input-wrap select {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(10, 56, 113, 0.16);
    background: #ffffff;
    color: var(--text);
    font-weight: 700;
    padding: 0 0.9rem;
    outline: none;
}

.domain-input-wrap input:focus,
.domain-input-wrap select:focus {
    border-color: rgba(10, 56, 113, 0.42);
    box-shadow: 0 0 0 0.2rem rgba(10, 56, 113, 0.09);
}

.hosting-flow article {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.hosting-flow article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(240, 179, 75, 0.18);
    color: var(--accent-strong);
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.hosting-flow h3 {
    color: var(--brand);
    font-size: 1.18rem;
    font-weight: 800;
}

.hosting-flow p {
    margin: 0;
    color: var(--text-soft);
}

.hosting-package-heading {
    margin-top: 3.2rem;
}

.hosting-package-card {
    height: 100%;
    padding: 1.55rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.hosting-package-card.featured {
    background:
        radial-gradient(circle at top right, rgba(240, 179, 75, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 243, 255, 0.98));
    border-color: rgba(10, 56, 113, 0.22);
}

.hosting-package-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hosting-package-label {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    background: rgba(10, 56, 113, 0.08);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hosting-package-top i {
    color: var(--accent-strong);
    font-size: 1.45rem;
}

.hosting-package-card h3 {
    color: var(--brand);
    font-weight: 800;
}

.hosting-price {
    color: var(--brand);
    font-size: clamp(1.55rem, 2.3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0.75rem 0;
}

.hosting-note,
.complete-offer-card {
    margin-top: 1.5rem;
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(10, 56, 113, 0.06);
    border: 1px solid rgba(10, 56, 113, 0.1);
    box-shadow: var(--shadow-soft);
}

.hosting-note {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.hosting-note i {
    color: var(--brand);
    font-size: 1.25rem;
}

.complete-offer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(240, 179, 75, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(10, 56, 113, 0.08), rgba(255,255,255,0.96));
}

.complete-offer-card h3 {
    color: var(--brand);
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0.9rem 0 0.5rem;
}

.process-cta {
    margin-top: 1.6rem;
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(10, 56, 113, 0.08), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(10, 56, 113, 0.1);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.portfolio-card {
    overflow: hidden;
    padding: 0;
}

.portfolio-media {
    height: 220px;
    background: linear-gradient(135deg, rgba(10, 56, 113, 0.85), rgba(7, 26, 51, 0.72));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
}

.portfolio-jogua {
    background:
        linear-gradient(135deg, rgba(10, 56, 113, 0.56), rgba(7, 26, 51, 0.72)),
        url("../img/1.jpg") center/cover no-repeat;
}

.portfolio-guapiy {
    background:
        linear-gradient(135deg, rgba(10, 56, 113, 0.56), rgba(7, 26, 51, 0.72)),
        url("../img/2.jpg") center/cover no-repeat;
}

.portfolio-dropnfly {
    background:
        linear-gradient(135deg, rgba(10, 56, 113, 0.56), rgba(7, 26, 51, 0.72)),
        url("../img/3.jpg") center/cover no-repeat;
}

.portfolio-loscuatros {
    background:
        linear-gradient(135deg, rgba(10, 56, 113, 0.56), rgba(7, 26, 51, 0.72)),
        url("../img/hero.jpg") center/cover no-repeat;
}

.portfolio-body {
    padding: 1.4rem;
}

.portfolio-result {
    margin-bottom: 1rem;
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: rgba(10, 56, 113, 0.05);
    color: var(--brand);
    font-weight: 600;
    font-size: 0.95rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(10, 56, 113, 0.08);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.testimonial-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,246,252,0.96));
    border: 1px solid rgba(10, 56, 113, 0.09);
    box-shadow: var(--shadow-soft);
}

.testimonial-card p {
    margin: 0.7rem 0 1rem;
    color: var(--text);
}

.testimonial-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(10, 56, 113, 0.08);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-launch-heading {
    margin: 2.3rem auto 1.6rem;
}

.launch-title {
    color: var(--brand);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 1rem 0 0.7rem;
}

.launch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.launch-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.launch-media {
    height: 280px;
    background: linear-gradient(135deg, rgba(10, 56, 113, 0.14), rgba(255,255,255,0.2));
    position: relative;
    overflow: hidden;
}

.launch-media::before,
.launch-media::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.launch-media::before {
    width: 240px;
    height: 240px;
    top: -60px;
    right: -30px;
    background: rgba(255, 255, 255, 0.22);
}

.launch-media::after {
    width: 180px;
    height: 180px;
    left: -30px;
    bottom: -40px;
    background: rgba(255, 255, 255, 0.14);
}

.launch-retail {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 34%),
        linear-gradient(135deg, #0a3871, #17845c);
}

.launch-wellness {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 34%),
        linear-gradient(135deg, #6f8d51, #d5b37e);
}

.launch-badge {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.launch-body {
    padding: 1.4rem;
}

.pricing-card {
    height: 100%;
    padding: 1.7rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.pricing-label {
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 600;
    max-width: 280px;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(232,243,255,0.98));
    border-color: rgba(10, 56, 113, 0.22);
    transform: translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(240, 179, 75, 0.18);
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand);
    margin: 1rem 0 0.6rem;
}

.pricing-features {
    padding-left: 1.1rem;
    margin: 1.2rem 0 1.5rem;
}

.pricing-features li + li {
    margin-top: 0.55rem;
}

.pricing-note {
    margin-top: 1.5rem;
    padding: 1.15rem 1.25rem;
    border-radius: 18px;
    background: rgba(10, 56, 113, 0.06);
    border: 1px solid rgba(10, 56, 113, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    align-items: center;
}

.contact-card,
.legal-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-list {
    display: grid;
    gap: 1rem;
}

.contact-list-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.contact-list-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(10, 56, 113, 0.08);
    color: var(--brand);
}

footer {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.88);
    padding: 1.7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: rgba(240, 179, 75, 0.18);
    border: 1px solid rgba(240, 179, 75, 0.3);
    color: #ffd892;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: rgba(31, 169, 113, 0.16);
    border: 1px solid rgba(31, 169, 113, 0.3);
    color: #b8f3d7;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.admin-stats {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-stats-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0.85rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.admin-stat {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.admin-stat strong,
.admin-stat span {
    display: block;
}

.admin-stat strong {
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.admin-stat span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

footer a {
    color: #ffffff;
}

@media (max-width: 1199px) {
    .founder-card {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding-top: 6.7rem;
    }

    .hero-grid,
    .band-card,
    .trust-strip,
    .public-stats,
    .testimonial-grid,
    .founder-card,
    .launch-grid,
    .hosting-hero,
    .domain-finder,
    .hosting-flow {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .process-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .complete-offer-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 4.5rem 0;
    }

    .founder-card {
        padding: 1.4rem;
    }

    .founder-photo-wrap,
    .founder-photo,
    .founder-copy {
        max-width: 100%;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .hosting-actions .btn,
    .complete-offer-card .btn {
        width: 100%;
    }

    .hosting-hero {
        padding: 1.35rem;
    }

    .domain-finder {
        padding: 1.1rem;
    }

    .domain-input-wrap {
        grid-template-columns: 1fr;
    }

    .floating-band {
        margin-top: -1.4rem;
    }
}
