/* IT Goodday - responsive desktop polish */
:root {
    color-scheme: dark;
    --bg: #0b272c;
    --bg-2: #10353d;
    --panel: rgba(35, 90, 96, 0.9);
    --panel-strong: rgba(28, 78, 86, 0.96);
    --line: rgba(126, 232, 255, 0.18);
    --line-strong: rgba(126, 232, 255, 0.36);
    --text: #f8fafc;
    --muted: #c6d3df;
    --soft: #94a3b8;
    --accent: #00d4ff;
    --accent-2: #4a90e2;
    --accent-3: #7ee8ff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.34);
    --radius-lg: 1.75rem;
    --radius-md: 1.25rem;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 8%, rgba(0, 212, 255, 0.16), transparent 30rem),
        radial-gradient(circle at 92% 18%, rgba(74, 144, 226, 0.18), transparent 28rem),
        linear-gradient(180deg, #0f3338 0%, #0b272c 54%, #0e3037 100%);
    color: #e2e8f0;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(126, 232, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 232, 255, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 70%);
}

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

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

p {
    line-height: 1.75;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 36, 42, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: max-content;
}

.brand img {
    height: 46px;
    width: 46px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 212, 255, 0.18));
}

.brand span {
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.site-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.site-nav a {
    color: #d7e1ec;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    font-weight: 750;
    font-size: 0.95rem;
    padding: 0.55rem 0.2rem;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--accent-3);
    border-bottom-color: rgba(126, 232, 255, 0.65);
}

.btn,
.text-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.92rem 1.45rem;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    border: 1px solid transparent;
    text-align: center;
    line-height: 1.1;
    cursor: pointer;
}

.btn-primary,
.btn-hero,
.btn-card {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-secondary,
.text-link {
    background: rgba(8, 31, 37, 0.54);
    color: #f8fafc;
    border-color: rgba(126, 232, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn:hover,
.btn:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0, 212, 255, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    outline: none;
}

.btn-secondary:hover,
.text-link:hover {
    border-color: rgba(126, 232, 255, 0.55);
    background: rgba(0, 212, 255, 0.12);
}

.full-width {
    width: 100%;
}

.hero-section {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 5.25rem 0 4.25rem;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    width: min(900px, 80vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(126, 232, 255, 0.28), transparent);
}

.hero-shell {
    position: relative;
    z-index: 1;
}

.hero-copy {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-row {
    display: grid;
    justify-items: center;
    gap: 0.8rem;
    margin-bottom: 1.25rem;
}

.hero-logo {
    width: 112px;
    filter: drop-shadow(0 22px 42px rgba(0, 212, 255, 0.24));
}

.hero-kicker {
    margin: -0.35rem 0 0;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.96rem;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--accent-3);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-weight: 900;
}

.hero-section h1 {
    font-size: clamp(2.55rem, 5vw, 5rem);
    line-height: 1.02;
    margin: 0 0 1.1rem;
    letter-spacing: -0.065em;
}

.hero-section h1 span {
    display: block;
    background: linear-gradient(90deg, var(--accent), var(--accent-2) 58%, #a3f1ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead,
.hero-section p:not(.eyebrow):not(.hero-kicker) {
    max-width: 790px;
    margin: 0 auto 2rem;
    color: var(--muted);
    font-size: 1.1rem;
}

.cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-row.compact {
    justify-content: flex-start;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero-badges span {
    padding: 0.68rem 0.95rem;
    border-radius: 999px;
    background: rgba(35, 90, 96, 0.82);
    border: 1px solid rgba(126, 232, 255, 0.18);
    color: #e6f4ff;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-offer-card {
    display: none;
}

.offer-stack {
    display: grid;
    gap: 0.75rem;
    margin: 1.25rem 0 1.35rem;
}

.offer-stack div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(126, 232, 255, 0.16);
    background: rgba(9, 35, 41, 0.48);
}

.offer-stack span {
    color: #e7f4ff;
    font-weight: 800;
}

.offer-stack strong {
    color: #ffffff;
    white-space: nowrap;
}

.section {
    padding: 4.75rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin: 0 auto 2.35rem;
    max-width: 800px;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 3.35rem);
    margin: 0 0 0.8rem;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.section-header p:not(.eyebrow) {
    color: #b5c5d4;
    font-size: 1rem;
    max-width: 760px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 1.25rem;
}

.grid-3,
.grid-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.card,
.package-card,
.pricing-card,
.panel,
.contact-form-panel,
.cta-panel,
.hero-offer-card {
    background: linear-gradient(180deg, rgba(39, 100, 109, 0.92), rgba(25, 71, 79, 0.92));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.card,
.package-card,
.pricing-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.card::before,
.package-card::before,
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.5;
}

.package-card,
.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.package-card:hover,
.pricing-card:hover,
.card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-strong);
}

.package-card,
.pricing-card,
.card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.featured-card,
.pricing-card.highlighted {
    border-color: rgba(0, 212, 255, 0.52);
    background:
        radial-gradient(circle at 20% 0%, rgba(126, 232, 255, 0.17), transparent 14rem),
        linear-gradient(180deg, rgba(47, 122, 134, 0.98), rgba(30, 84, 92, 0.96));
}

.package-label {
    width: fit-content;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.14);
    color: #c9f7ff;
    border: 1px solid rgba(0, 212, 255, 0.28);
    font-size: 0.76rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.card h3,
.package-card h3,
.pricing-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.card p,
.package-card p,
.pricing-card p {
    color: var(--muted);
    margin-top: 0;
}

.price {
    font-size: 2.05rem;
    line-height: 1;
    margin: 0 0 1rem;
    color: #ffffff !important;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.price span {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 800;
    letter-spacing: 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
    color: #e3eef8;
    line-height: 1.7;
}

.check-list li {
    position: relative;
    padding-left: 1.55rem;
    margin-bottom: 0.45rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-3);
    font-weight: 950;
}

.package-card .text-link,
.pricing-card .btn-card {
    margin-top: auto;
    width: 100%;
}

.section-monthly,
.section-about {
    background: linear-gradient(180deg, rgba(5, 25, 29, 0.2), rgba(5, 25, 29, 0.08));
}

.about-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.about-grid > div:first-child {
    max-width: 680px;
}

.about-grid h2 {
    font-size: clamp(2.2rem, 3vw, 3.75rem);
    margin: 0 0 1rem;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.about-grid p:not(.eyebrow) {
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 1rem;
}

.value-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-list div {
    background: rgba(35, 90, 96, 0.92);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem 1.15rem;
    color: #f8fafc;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 640px;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.cta-panel {
    border-radius: 2rem;
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cta-panel::after {
    content: '';
    position: absolute;
    width: 22rem;
    height: 22rem;
    right: -10rem;
    bottom: -13rem;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.12);
    pointer-events: none;
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 2.6vw, 3rem);
    letter-spacing: -0.05em;
    color: #ffffff;
}

.cta-panel p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.panel,
.contact-form-panel {
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.panel h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
}

.panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.panel ul li {
    position: relative;
    padding-left: 1.35rem;
}

.panel ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-3);
}

.panel.contact-info div {
    margin-bottom: 0.85rem;
    color: var(--muted);
}

.panel.contact-info a {
    color: var(--accent-3);
    font-weight: 800;
}

.alert {
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.alert-success {
    background: rgba(16, 120, 122, 0.22);
    border: 1px solid rgba(0, 212, 255, 0.22);
    color: #d1fae5;
}

.alert-error {
    background: rgba(185, 28, 28, 0.18);
    border: 1px solid rgba(248, 113, 113, 0.28);
    color: #fee2e2;
}

.contact-form label {
    display: block;
    margin-bottom: 0.75rem;
    color: #d8e4ef;
    font-weight: 900;
}

.contact-form label span {
    color: var(--accent);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(126, 232, 255, 0.18);
    background: rgba(8, 32, 38, 0.72);
    color: #f8fafc;
    margin-bottom: 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

.site-footer {
    padding: 2.5rem 0 1rem;
    background: #0b252b;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.footer-brand img {
    width: 58px;
}

.footer-brand h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #ffffff;
}

.footer-brand p {
    margin-top: 0.5rem;
    color: var(--muted);
}

.footer-links {
    display: grid;
    gap: 1rem;
}

.footer-links h4 {
    margin-bottom: 0.75rem;
    color: var(--accent-3);
}

.footer-links a {
    display: block;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-3);
}

.footer-links p {
    color: var(--muted);
    margin: 0 0 0.45rem;
}

.footer-bottom {
    margin-top: 2rem;
    color: var(--soft);
    text-align: center;
    font-size: 0.95rem;
}

@media (min-width: 760px) {
    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-panel {
        grid-template-columns: 1.35fr 1fr;
        padding: 2.3rem;
    }

    .footer-inner {
        grid-template-columns: 1.35fr 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .container {
        width: min(1180px, calc(100% - 3rem));
    }

    .header-inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 1.5rem;
    }

    .site-nav {
        justify-content: flex-end;
        gap: 1.1rem;
    }

    .site-header .btn {
        padding-inline: 1.25rem;
        white-space: nowrap;
    }

    .hero-section {
        min-height: calc(100vh - 78px);
        padding: 5.75rem 0 5rem;
    }

    .hero-shell {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
        gap: 3rem;
        align-items: center;
    }

    .hero-copy {
        text-align: left;
        max-width: none;
        margin: 0;
    }

    .hero-logo-row {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .hero-logo {
        width: 84px;
        flex: 0 0 auto;
    }

    .hero-section h1 {
        max-width: 780px;
        font-size: clamp(3.4rem, 5.1vw, 5.65rem);
    }

    .hero-lead,
    .hero-section p:not(.eyebrow):not(.hero-kicker) {
        margin-left: 0;
        margin-right: 0;
        font-size: 1.18rem;
    }

    .hero-actions,
    .hero-badges {
        justify-content: flex-start;
    }

    .hero-actions .btn {
        min-width: 225px;
    }

    .hero-offer-card {
        display: block;
        border-radius: 2rem;
        padding: 2rem;
        position: relative;
        overflow: hidden;
    }

    .hero-offer-card::before {
        content: '';
        position: absolute;
        inset: -35% -25% auto auto;
        width: 18rem;
        height: 18rem;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(126, 232, 255, 0.22), transparent 68%);
        pointer-events: none;
    }

    .hero-offer-card > * {
        position: relative;
        z-index: 1;
    }

    .hero-offer-card h2 {
        margin: 0 0 0.8rem;
        font-size: clamp(1.75rem, 2.15vw, 2.45rem);
        line-height: 1.08;
        letter-spacing: -0.045em;
        color: #ffffff;
    }

    .hero-offer-card p {
        margin: 0;
        color: var(--muted);
    }

    .section {
        padding: 5.5rem 0;
    }

    .section-packages .grid-4 {
        align-items: stretch;
    }

    .package-card,
    .pricing-card,
    .card {
        padding: 1.9rem;
    }

    .pricing-card.highlighted {
        transform: translateY(-0.4rem);
    }

    .pricing-card.highlighted:hover {
        transform: translateY(-0.65rem);
    }

    .contact-grid {
        grid-template-columns: 0.82fr 1.18fr;
        align-items: start;
    }

    .contact-details {
        position: sticky;
        top: 6.5rem;
    }
}

@media (min-width: 1180px) {
    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .package-card h3 {
        min-height: 3.2rem;
    }
}

@media (max-width: 920px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 1.25rem, 1180px);
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero-section {
        padding-top: 4.5rem;
    }

    .cta-row,
    .cta-row.compact {
        align-items: stretch;
        flex-direction: column;
    }

    .btn,
    .text-link {
        width: 100%;
    }

    .hero-badges {
        align-items: stretch;
        flex-direction: column;
    }

    .value-list {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-template-columns: 1fr;
    }
}

/* Secure contact form helpers */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-note {
    margin: 0.85rem 0 0;
    color: var(--soft);
    font-size: 0.92rem;
    line-height: 1.55;
}
