/* ORIGINAL STYLE.CSS */

:root {
    --bg: #f4f7fb;
    --bg-soft: #eef3f9;
    --card: #ffffff;
    --card-soft: #f8fbff;
    --text: #142033;
    --muted: #607089;
    --line: #dbe4ef;
    --line-strong: #c4d3e3;
    --primary: #355dfb;
    --primary-dark: #223c9b;
    --navy: #0f1c34;
    --teal: #1cb7a5;
    --coral: #f07a6a;
    --gold: #f6c761;
    --danger: #b42318;
    --success: #127c3f;
    --shadow: 0 18px 45px rgba(15, 28, 52, 0.08);
    --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(53,93,251,0.08), transparent 28%),
        radial-gradient(circle at top left, rgba(28,183,165,0.08), transparent 22%),
        linear-gradient(180deg, #f7faff 0%, var(--bg) 35%, #f5f7fb 100%);
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.88);
    border-bottom: 1px solid rgba(219,228,239,0.9);
}
.site-footer {
    margin-top: 48px;
    background: linear-gradient(180deg, #10203c 0%, #0e1830 100%);
    color: rgba(255,255,255,0.88);
}
.topbar, .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
}
.logo-wrap { display:flex; flex-direction:column; gap:3px; }
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
}
.logo::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 48%, var(--coral) 100%);
    box-shadow: 20px 0 0 -4px rgba(240,122,106,0.55), 40px 0 0 -6px rgba(28,183,165,0.35);
}
.logo-sub {
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 700;
}
nav { display: flex; gap: 10px; flex-wrap: wrap; }
nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--navy);
    font-weight: 700;
    transition: .2s ease;
}
nav a:hover {
    background: #eef4ff;
    color: var(--primary);
}
.content { padding: 30px 0 20px; }
.hero, .card, .vacancy-card, .stats, .form-card, .pricing-card, .select-card, .home-widget {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(219,228,239,0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero::before, .card::before, .vacancy-card::before, .pricing-card::before, .stats::before, .form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0));
    pointer-events: none;
}
.hero {
    padding: 34px;
    margin-bottom: 24px;
    background:
        radial-gradient(circle at 0% 0%, rgba(28,183,165,0.16), transparent 22%),
        radial-gradient(circle at 100% 0%, rgba(240,122,106,0.16), transparent 24%),
        linear-gradient(135deg, rgba(15,28,52,0.98) 0%, rgba(23,39,73,0.96) 58%, rgba(45,68,117,0.92) 100%);
    color: #fff;
}
.hero h1, .hero h2, .hero p, .hero .lead, .hero .social-proof { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.84); }
.hero .badge { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.vacancy-card, .card, .form-card, .stats, .pricing-card { padding: 24px; }
h1, h2, h3 { margin: 0 0 12px; line-height: 1.1; letter-spacing: -0.025em; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
h3 { font-size: 1.02rem; }
p { margin: 0 0 14px; line-height: 1.65; }
.vacancy-meta, .muted, .lead { color: var(--muted); font-size: .96rem; }
.lead { font-size: 1.06rem; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary) 0%, #547dff 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(53,93,251,0.22);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(53,93,251,0.28); }
.btn-secondary {
    background: #edf4ff;
    color: var(--primary-dark);
    box-shadow: none;
}
.btn-secondary:hover { background: #e2edff; box-shadow: none; }
.btn-danger { background: linear-gradient(135deg, #d4372a 0%, #b42318 100%); }
.btn-link { background: transparent; color: var(--primary); padding: 0; box-shadow: none; }
form .field { margin-bottom: 18px; }
label { display: block; margin-bottom: 8px; font-weight: 800; }
input[type="text"], input[type="email"], input[type="password"], input[type="number"], select, textarea, input[type="file"] {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: rgba(53,93,251,0.58);
    box-shadow: 0 0 0 4px rgba(53,93,251,0.12);
}
textarea { min-height: 140px; resize: vertical; }
.flash { padding: 14px 16px; border-radius: 14px; margin-bottom: 16px; }
.flash-success { background: #ecfdf3; color: var(--success); border: 1px solid #b7ebc6; }
.flash-error { background: #fff1f3; color: var(--danger); border: 1px solid #fbcfe8; }
.flash-info { background: #eef4ff; color: var(--primary); border: 1px solid #cdddfd; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--primary-dark);
    font-size: .8rem;
    font-weight: 800;
}
.badge-gold { background: #fff1cf; color: #8a5b00; }
.price { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 900; letter-spacing: -0.03em; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--navy); font-size: .92rem; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.notice {
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff8e8 0%, #fff2d2 100%);
    border: 1px solid #f5d28d;
}
.checkbox-row { display: flex; gap: 10px; align-items: center; }
.checkbox-row label { margin: 0; font-weight: 700; }
.hero-points { margin: 18px 0; padding-left: 18px; line-height: 1.8; }
.hero-points li { margin-bottom: 4px; }
.social-proof { margin: 0 0 18px; font-size: 1rem; }
.pricing-strip { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 24px; }
.pricing-card p { margin-bottom: 0; }
.pricing-card .muted, .stats .muted { text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; font-weight: 800; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 8px; }
.featured {
    border-color: rgba(246,199,97,0.8);
    box-shadow: 0 16px 34px rgba(185, 105, 0, 0.11);
}
.select-card {
    position: relative;
    display: block;
    padding: 22px;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.select-card:hover { transform: translateY(-2px); border-color: rgba(53,93,251,0.45); }
.select-card.compact .price { font-size: 1.5rem; }
.select-card input[type="radio"], .select-card input[type="checkbox"] {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}
.price-options { margin-bottom: 8px; }
.upsell-box {
    margin: 20px 0;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(53,93,251,0.06) 0%, rgba(28,183,165,0.05) 100%);
    border: 1px solid #dbe7ff;
}
.home-widget { padding: 22px; }
.home-widget-list { display: grid; gap: 14px; margin-top: 16px; }
.home-widget-item { padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.footer-inner { min-height: 84px; }
.footer-inner p { margin: 0; color: rgba(255,255,255,0.72); }
.footer-inner a { color: #fff; }
.auth-links { display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }
.auth-links a { font-weight:700; }
.kicker {
    display:inline-block;
    margin-bottom:10px;
    color: var(--primary-dark);
    font-size:.8rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.dark-card {
    background: linear-gradient(135deg, var(--navy) 0%, #1b315f 100%);
    color: #fff;
}
.dark-card .muted, .dark-card p { color: rgba(255,255,255,.8); }
@media (max-width: 760px) {
  .topbar, .footer-inner, .section-head { flex-direction: column; align-items: flex-start; }
  nav { width: 100%; }
  nav a { padding: 10px 12px; }
  .hero { padding: 24px; }
}




/* IOS MOBILE MENU */
/* Premium iOS-style mobile menu */
.ios-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
}

.ios-header .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    transform: translateY(-1px);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    outline: none;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto 4px;
    background: currentColor;
    border-radius: 999px;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-menu {
    position: fixed;
    top: 12px;
    right: 12px;
    left: 12px;
    z-index: 1002;
}

.mobile-menu-inner {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 12px;
}

.mobile-menu-title {
    display: block;
    font-size: 1.05rem;
}

.mobile-menu-subtitle {
    margin: 4px 0 0;
    font-size: 0.88rem;
    opacity: 0.7;
}

.menu-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu-links {
    display: grid;
    gap: 10px;
    padding: 0 14px 14px;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform .2s ease, background .2s ease;
}

.mobile-menu-links a::after {
    content: '›';
    font-size: 1.15rem;
    opacity: 0.45;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.82);
    outline: none;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 860px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-shrink: 0;
    }

    .logo-sub {
        display: none;
    }
}

@media (min-width: 861px) {
    .mobile-menu,
    .menu-overlay {
        display: none !important;
    }
}
