:root {
    --text: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --white: #ffffff;
    --soft: #f8fafc;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #06b6d4;
    --violet: #6366f1;
    --green: #10b981;
    --shadow: 0 24px 70px rgba(15, 23, 42, .11);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 74px;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 8%, rgba(37, 99, 235, .09), transparent 28%),
        radial-gradient(circle at 90% 14%, rgba(6, 182, 212, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, .9);
}

.header-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.brand-text {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    transition: color .2s ease;
}

.brand-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.brand-copy {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand:hover .brand-text {
    color: var(--blue);
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
}

.header-experience {
    min-height: 36px;
    padding: 0 13px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    border-radius: 999px;

    background: rgba(37, 99, 235, .08);

    border: 1px solid rgba(37, 99, 235, .12);

    color: var(--blue);

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;
}

.header-experience i {
    font-size: 13px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.site-nav a {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

.site-nav a:hover {
    color: var(--blue);
    background: rgba(37, 99, 235, .07);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 0;
    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform .25s ease, opacity .25s ease, background .25s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-btn.active span {
    background: var(--blue);
}

.mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;

    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(226, 232, 240, .9);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);

    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;

    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav {
    padding: 18px 0 22px;
    display: grid;
    gap: 10px;
}

.mobile-nav a {
    min-height: 46px;
    padding: 0 16px;

    border-radius: 16px;

    display: flex;
    align-items: center;

    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);

    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.mobile-nav a:hover {
    color: var(--blue);
    background: rgba(37, 99, 235, .05);
}

.btn-main,
.btn-soft {
    border: 0;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn-main {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 30px rgba(37, 99, 235, .22);
}

.btn-main:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(37, 99, 235, .28);
}

.btn-soft {
    color: var(--blue);
    background: #fff;
    border: 1px solid rgba(37, 99, 235, .22);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.btn-soft:hover {
    background: rgba(37, 99, 235, .05);
    transform: translateY(-2px);
}

.hero {
    padding: 54px 0 42px;
}

.hero-box {
    min-height: 540px;
    padding: 52px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 18% 12%, rgba(6, 182, 212, .16), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(99, 102, 241, .14), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .9));
    border: 1px solid rgba(226, 232, 240, .95);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-box::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    bottom: -190px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(6, 182, 212, .14));
    border-radius: 50%;
    filter: blur(10px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.mini-label,
.section-kicker,
.section-title span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .14);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 6vw, 72px);
    line-height: .95;
    letter-spacing: -.07em;
}

.hero p {
    max-width: 600px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-panel {
    position: relative;
    z-index: 2;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-card {
    width: min(100%, 350px);
    padding: 20px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(226, 232, 240, .95);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .13);
    backdrop-filter: blur(18px);
    animation: floatMain 5s ease-in-out infinite;
}

.phone-top {
    width: 74px;
    height: 7px;
    border-radius: 999px;
    background: #dbeafe;
    margin: 0 auto 22px;
}

.status-card {
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.status-card.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(6, 182, 212, .08));
}

.status-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: var(--blue);
}

.status-card strong,
.status-card span {
    display: block;
}

.status-card span {
    color: var(--muted);
    font-size: 13px;
    margin-top: 3px;
}

.floating-badge {
    position: absolute;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 44px rgba(15, 23, 42, .12);
    color: var(--blue);
    font-weight: 800;
    font-size: 13px;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge i {
    margin-right: 7px;
}

.badge-one {
    top: 42px;
    right: 20px;
    animation-duration: 4.8s;
    animation-delay: .2s;
}

.badge-two {
    left: 10px;
    bottom: 84px;
    animation-duration: 6.2s;
    animation-delay: 1.1s;
}

.badge-three {
    right: 32px;
    bottom: 30px;
    animation-duration: 5.4s;
    animation-delay: 2s;
}

.badge-ai {
    top: 18px;
    left: 18px;
    animation-duration: 7s;
    animation-delay: .6s;
}

.section {
    padding: 48px 0;
}

.section-title {
    max-width: 680px;
    text-align: center;
    margin: 0 auto 26px;
}

.section-title h2,
.automation-box h2,
.contact-card h2,
.modal-box h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.06;
    letter-spacing: -.05em;
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.compact-card {
    min-height: 190px;
    padding: 22px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 45px rgba(15, 23, 42, .055);
    transition: transform .22s ease, box-shadow .22s ease;
}

.compact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .1);
}

.compact-card i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--blue);
    font-size: 20px;
    margin-bottom: 16px;
}

.compact-card h3 {
    margin: 0;
    font-size: 19px;
}

.compact-card p,
.automation-box p,
.contact-card p,
.modal-box p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.automation-section {
    padding: 48px 0;
}

.automation-box {
    padding: 36px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 15% 20%, rgba(6, 182, 212, .14), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(37, 99, 235, .10), transparent 30%),
        #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 28px;
    align-items: start;
}

.automation-box .btn-main {
    margin-top: 24px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-grid div {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(226, 232, 240, .95);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.social-grid i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--blue);
    color: #fff;
}

.portfolio-slider {
    overflow: visible;
}

.portfolio-top {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.portfolio-total {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .12);
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

.portfolio-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, .45);
    border-radius: 999px;
    background: #fff;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.portfolio-arrow:hover {
    background: rgba(37, 99, 235, .06);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .09);
}

.portfolio-window {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0;
    background: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.portfolio-window::-webkit-scrollbar {
    display: none;
}

.portfolio-track {
    display: flex;
    gap: 16px;
    width: max-content;
    background: transparent;
}

.portfolio-card {
    flex: 0 0 260px;
    width: 260px;
    padding: 14px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .45);
    box-shadow: none;
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, .32);
    box-shadow: none;
}

.portfolio-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-card strong {
    position: relative;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    font-size: 22px;
    letter-spacing: -.03em;
}

.portfolio-card strong::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 72px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), #ffffff 78%);
    pointer-events: none;
}

.portfolio-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--muted);
    line-height: 1.5;
    margin: 8px 0 0;
    font-size: 14px;
}

.hosting-section {
    padding: 48px 0;
}

.hosting-box {
    padding: 36px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 15% 20%, rgba(6, 182, 212, .14), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(37, 99, 235, .10), transparent 30%),
        #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);

    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

.hosting-content h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.06;
    letter-spacing: -.05em;
}

.hosting-content p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 720px;
}

.hosting-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.hosting-features div {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);

    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: 700;
}

.hosting-features i {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: var(--blue);
    color: #fff;
}

.domain-prices {
    display: grid;
    gap: 14px;
}

.domain-card {
    padding: 24px;
    border-radius: 28px;

    background: #fff;

    border: 1px solid var(--line);

    box-shadow: 0 16px 45px rgba(15, 23, 42, .06);

    transition:
        opacity .38s ease,
        filter .38s ease,
        transform .38s ease;
}

.domain-card.is-changing {
    opacity: .28;
    filter: blur(8px);
    transform: scale(.96);
}

.domain-top {
    margin-bottom: 18px;
}

.domain-top span {
    display: inline-flex;

    padding: 8px 12px;

    border-radius: 999px;

    background: rgba(37, 99, 235, .08);

    border: 1px solid rgba(37, 99, 235, .12);

    color: var(--blue);

    font-size: 13px;
    font-weight: 800;
}

.domain-card strong {
    display: block;

    font-size: 42px;

    letter-spacing: -.05em;
}

.domain-card small {
    display: block;

    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;
}

.contact-section {
    padding: 48px 0 60px;
}

.contact-card {
    padding: 36px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, .15), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(37, 99, 235, .12), transparent 30%),
        #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.contact-meta {
    margin-top: 18px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    min-height: 42px;

    padding: 0 16px;

    border-radius: 999px;

    background: rgba(37, 99, 235, .08);

    border: 1px solid rgba(37, 99, 235, .12);

    color: var(--blue);

    font-size: 14px;
    font-weight: 800;
}

.contact-location i {
    font-size: 14px;
}

.contact-links {
    display: grid;
    gap: 10px;
}

.contact-links a,
.contact-links button,
.contact-item {
    width: 100%;
}

.contact-links a,
.contact-item {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
}

.contact-links a i,
.contact-item i {
    color: var(--blue);
}

.footer {
    padding: 22px 0 32px;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    width: 46px;
    height: 46px;
    display: block;
    border-radius: 14px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.footer-brand {
    width: fit-content;
    color: var(--text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    transition: color .2s ease;
}

.footer-brand:hover {
    color: var(--blue);
}

.footer-left span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.footer-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.footer-services span {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .12);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.footer-services span:hover {
    background: rgba(37, 99, 235, .14);
    border-color: rgba(37, 99, 235, .2);
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.contact-modal.active {
    display: flex;
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .45);
    backdrop-filter: blur(12px);
}

.modal-box {
    position: relative;
    width: min(100%, 480px);
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.modal-form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #f8fafc;
    border-radius: 13px;
    padding: 11px 13px;
    outline: none;
    font-size: 14px;
}

.modal-form textarea {
    min-height: 86px;
    resize: vertical;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--blue);
    background: #fff;
}

@media (max-width: 991px) {
    .contact-modal {
        padding: 12px;
    }

    .modal-box {
        width: min(100%, 440px);
        padding: 20px;
        border-radius: 22px;
    }

    .modal-box h2 {
        font-size: 28px;
    }

    .modal-box p {
        font-size: 14px;
        line-height: 1.45;
    }

    .modal-form {
        gap: 9px;
        margin-top: 14px;
    }

    .modal-form input,
    .modal-form select,
    .modal-form textarea {
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 14px;
    }

    .modal-form textarea {
        min-height: 78px;
    }
}

@media (max-width: 575px) {
    .contact-modal {
        align-items: flex-start;
        justify-content: center;
        padding: 6px;
        padding-top: 58px;
    }

    .modal-box {
        width: min(100%, 340px);
        max-height: calc(100vh - 64px);
        padding: 12px;
        border-radius: 14px;
    }

    .modal-close {
        top: 7px;
        right: 7px;
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .modal-box .section-kicker {
        padding: 4px 7px;
        font-size: 9px;
        margin-bottom: 7px;
    }

    .modal-box h2 {
        font-size: 18px;
        line-height: 1.05;
        padding-right: 24px;
        letter-spacing: -.03em;
    }

    .modal-box p {
        margin-top: 5px;
        font-size: 11px;
        line-height: 1.3;
    }

    .modal-form {
        gap: 6px;
        margin-top: 10px;
    }

    .modal-form input,
    .modal-form select,
    .modal-form textarea {
        padding: 6px 8px;
        border-radius: 9px;
        font-size: 16px;
        line-height: 1.15;
        -webkit-appearance: none;
        appearance: none;
    }

    .modal-form textarea {
        min-height: 52px;
    }

    .modal-form .btn-main {
        min-height: 34px;
        padding: 0 12px;
        border-radius: 10px;
        font-size: 12px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .08s;
}

.delay-2 {
    transition-delay: .16s;
}

.delay-3 {
    transition-delay: .24s;
}

@keyframes floatMain {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.toast-box {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 3000;

    display: grid;
    gap: 10px;

    width: min(360px, calc(100vw - 36px));
}

.toast-message {
    padding: 14px 16px;

    border-radius: 16px;

    box-shadow: 0 18px 50px rgba(15, 23, 42, .16);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;

    opacity: 0;
    transform: translateY(12px);

    transition: opacity .25s ease, transform .25s ease;
}

.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-message.success {
    color: #ffffff;
    background: #10b981;
    border: 1px solid #059669;
}

.toast-message.error {
    color: #ffffff;
    background: #ef4444;
    border: 1px solid #dc2626;
}

@media (max-width: 1280px) {
    .header-inner {
        gap: 18px;
    }

    .site-nav a {
        padding: 10px 10px;
        font-size: 13px;
    }

    .header-experience {
        font-size: 12px;
        padding: 0 11px;
    }
}

@media (max-width: 1199px) {
    .site-nav {
        display: none;
    }

    .header-quote {
        display: none;
    }

    .header-experience {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .hero-box,
    .automation-box,
    .hosting-box,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-box {
        padding: 34px;
    }

    .compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-card {
        flex-basis: calc((100vw - 48px) / 2);
        width: calc((100vw - 48px) / 2);
    }

    .hero-panel {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    body {
        padding-top: 64px;
    }

    .header-inner {
        height: 64px;
    }

    .brand-text {
        font-size: 18px;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-box {
        padding: 26px 18px;
        border-radius: 30px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        display: grid;
    }

    .compact-grid,
    .social-grid,
    .hosting-features {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        flex-basis: calc((100vw - 48px) / 2);
        width: calc((100vw - 48px) / 2);
    }

    .compact-card {
        min-height: auto;
    }

    .automation-box,
    .contact-card {
        padding: 24px;
        border-radius: 28px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .footer-services {
        justify-content: flex-start;
    }
}

#services,
#automation,
#portfolio,
#hosting,
#contact {
    scroll-margin-top: 70px;
}

