/**
 * Path: public_html/assets/css/main.css
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #01056e;
    --primary-dark: #00034f;
    --primary-light: #141aa3;

    --header-bg: #07091c;
    --header-bg-soft: #0d1030;

    --text: #111827;
    --muted: #657084;
    --border: #e5e8f0;

    --surface: #ffffff;
    --surface-soft: #f6f8fc;
    --surface-blue: #f0f3ff;

    --white: #ffffff;
    --danger: #b91c1c;
    --success: #047857;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 18px 50px rgba(1, 5, 110, 0.12);
    --shadow-header: 0 18px 45px rgba(0, 0, 0, 0.22);

    --container: 1180px;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--surface);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, #07091c 0%, #01056e 55%, #05071b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-header);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 14px 32px rgba(0, 0, 0, 0.25);
}

.brand-text {
    font-size: 22px;
    color: var(--white);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 600;
}

.main-nav a {
    position: relative;
    transition: color var(--transition);
}

.main-nav a:hover {
    color: var(--white);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: width var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-main {
    min-height: 65vh;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 19px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(1, 5, 110, 0.18);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border-color: rgba(1, 5, 110, 0.18);
}

.btn-outline:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-header-light {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.24);
}

.btn-header-light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.42);
}

.btn-header-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 14px 34px rgba(255, 255, 255, 0.16);
}

.btn-header-primary:hover {
    background: #f3f5ff;
    color: var(--primary-dark);
}

/* SECTIONS */

.section {
    padding: 86px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-title {
    max-width: 760px;
    margin-bottom: 38px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--primary);
    background: rgba(1, 5, 110, 0.08);
    border: 1px solid rgba(1, 5, 110, 0.10);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--text);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(42px, 5vw, 72px);
}

h2 {
    font-size: clamp(32px, 3.2vw, 46px);
}

h3 {
    font-size: 23px;
}

p {
    margin: 0;
    color: var(--muted);
}

.lead {
    font-size: 19px;
    line-height: 1.75;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* FOOTER */

.site-footer {
    background: #060922;
    color: var(--white);
    padding: 62px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 42px;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.66);
    max-width: 360px;
}

.site-footer h4 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 16px;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.70);
    transition: color var(--transition);
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

/* FORMS */

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 7px;
    color: #24304a;
    font-weight: 700;
    font-size: 14px;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 15px;
    font: inherit;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(1, 5, 110, 0.45);
    box-shadow: 0 0 0 4px rgba(1, 5, 110, 0.08);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 700;
}

.alert-error {
    background: #fef2f2;
    color: var(--danger);
    border: 1px solid #fecaca;
}

.alert-success {
    background: #ecfdf5;
    color: var(--success);
    border: 1px solid #bbf7d0;
}

/* PUBLIC PAGES */

.hero-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(1, 5, 110, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 54px;
    align-items: center;
}

.hero-content .lead {
    max-width: 690px;
    margin-top: 24px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-card {
    background:
        linear-gradient(145deg, #07091c 0%, #01056e 58%, #080a22 100%);
    border-radius: 32px;
    padding: 30px;
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(1, 5, 110, 0.24);
}

.hero-card-top,
.hero-metric {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card-top span,
.hero-metric span {
    color: rgba(255, 255, 255, 0.66);
}

.hero-card-top strong,
.hero-metric strong {
    color: #ffffff;
}

.feature-card {
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,255,255,0.16), transparent 28%),
        linear-gradient(135deg, #07091c 0%, #01056e 62%, #05071b 100%);
    color: #ffffff;
}

.cta-panel h2 {
    color: #ffffff;
    max-width: 720px;
}

.cta-panel .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

.page-head {
    max-width: 920px;
}

.page-head .lead {
    margin-top: 22px;
    max-width: 780px;
}

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

.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: rgba(1, 5, 110, 0.28);
    box-shadow: 0 24px 70px rgba(1, 5, 110, 0.16);
}

.pricing-card h3 {
    margin-bottom: 10px;
}

.price {
    margin: 24px 0;
    color: var(--primary);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.price span {
    font-size: 15px;
    color: var(--muted);
    font-weight: 600;
}

.pricing-card ul {
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}

.pricing-card li {
    padding: 9px 0;
    color: #344054;
    border-bottom: 1px solid #edf0f6;
}

.badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 800;
}

.domain-box {
    max-width: 820px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 42px;
    box-shadow: var(--shadow-sm);
}

.domain-box p {
    margin: 18px 0 28px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 18px;
}

@media (max-width: 980px) {
    .hero-grid,
    .pricing-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

/* RESPONSIVE */

@media (max-width: 980px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 16px 0;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .grid-3,
    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .header-actions {
        width: 100%;
    }

    .header-actions .btn {
        flex: 1;
    }

    .section {
        padding: 62px 0;
    }
}