/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand — maple red */
    --red: #D71E28;
    --red-dark: #B00714;
    --red-light: #F03A43;
    --red-soft: #FDECEC;
    /* Brand — navy */
    --navy: #14233F;
    --navy-deep: #0C1526;
    --navy-light: #24365C;
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f7f9fc;
    --gray-100: #eef1f7;
    --gray-200: #e2e6ef;
    --gray-300: #cfd5e2;
    --gray-500: #7a869c;
    --gray-600: #5a6478;
    --text: #1b2437;
    --text-light: #5a6478;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 1px 3px rgba(20, 35, 63, 0.06), 0 6px 20px rgba(20, 35, 63, 0.05);
    --shadow-lg: 0 8px 24px rgba(20, 35, 63, 0.10), 0 24px 60px rgba(20, 35, 63, 0.08);
    --shadow-red: 0 8px 24px rgba(215, 30, 40, 0.28);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Accessibility ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 24px;
    background: var(--red);
    color: var(--white);
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(215, 30, 40, 0.25);
}
.btn-primary:hover:not(:disabled) {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-lg { padding: 16px 36px; font-size: 1.02rem; }

.btn-ghost {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-light {
    background: var(--white);
    color: var(--red);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.btn-nav {
    padding: 10px 22px;
    background: var(--red);
    color: var(--white) !important;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(215, 30, 40, 0.25);
}
.btn-nav:hover { background: var(--red-dark); }

.btn-full { width: 100%; }

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 16px rgba(20, 35, 63, 0.08);
    padding: 10px 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo img { height: 42px; width: auto; transition: var(--transition); }
.navbar.scrolled .logo img { height: 38px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--red); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 21, 38, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1200px 600px at 85% -10%, rgba(215, 30, 40, 0.08), transparent 60%),
        radial-gradient(900px 500px at 0% 20%, rgba(20, 35, 63, 0.06), transparent 55%),
        linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.hero-decor {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(20, 35, 63, 0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
    z-index: 0;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    padding: 150px 24px 90px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 26px;
}
.leaf-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(215, 30, 40, 0.15);
}
.hero h1 {
    font-size: clamp(2.5rem, 5.2vw, 4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}
.hero h1 .highlight {
    color: var(--red);
    position: relative;
    white-space: nowrap;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0.06em;
    height: 0.16em;
    background: rgba(215, 30, 40, 0.18);
    border-radius: 4px;
    z-index: -1;
}
.hero-sub {
    font-size: 1.16rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 560px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}
.hero-trust svg {
    width: 18px; height: 18px;
    color: var(--red);
    flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}
.hero-glow {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(215, 30, 40, 0.16), transparent 65%);
    filter: blur(20px);
    z-index: 0;
}
.hero-mark {
    position: relative;
    z-index: 1;
    width: min(78%, 380px);
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(20, 35, 63, 0.18));
    animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-float {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    border-radius: 14px;
}
.hero-float strong { display: block; font-size: 0.92rem; color: var(--navy); font-weight: 700; }
.hero-float span { display: block; font-size: 0.78rem; color: var(--text-light); }
.hf-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: #E7F7EE; color: #16a34a;
    flex-shrink: 0;
}
.hf-icon svg { width: 20px; height: 20px; }
.hf-icon-red { background: var(--red-soft); color: var(--red); }
.hero-float-1 { top: 14%; left: -4%; animation: floaty 7s ease-in-out infinite; }
.hero-float-2 { bottom: 12%; right: -2%; animation: floaty 5.5s ease-in-out infinite 0.5s; }

/* ===== Trust bar ===== */
.trustbar {
    background: var(--navy);
    padding: 26px 0;
}
.trustbar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.98rem;
}
.trust-item svg { width: 24px; height: 24px; color: var(--red-light); flex-shrink: 0; }

/* ===== Section Shared ===== */
.section-tag {
    display: inline-block;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-tag-light { color: var(--red-light); }
.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 720px;
}
.section-title-light { color: var(--white); }
.section-subtitle {
    color: var(--text-light);
    font-size: 1.12rem;
    max-width: 620px;
    margin-bottom: 52px;
    line-height: 1.7;
}
.section-subtitle-light { color: rgba(255, 255, 255, 0.7); }

/* ===== Services ===== */
.services { padding: 100px 0; background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 34px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition);
}
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.service-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: var(--red-soft);
    color: var(--red);
    margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== Why Us ===== */
.why {
    position: relative;
    padding: 100px 0;
    background: var(--navy);
    overflow: hidden;
}
.why-decor {
    position: absolute;
    top: -30%; right: -10%;
    width: 60%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(215, 30, 40, 0.20), transparent 60%);
    z-index: 0;
}
.why .container { position: relative; z-index: 1; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.why-card {
    padding: 32px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(240, 58, 67, 0.4);
    transform: translateY(-4px);
}
.why-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red-light);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.why-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
}

/* ===== Process ===== */
.process { padding: 100px 0; background: var(--gray-50); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-step { position: relative; }
.process-marker {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--red);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.process-marker span {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--red);
}
.process-step:not(:last-child) .process-marker::after {
    content: '';
    position: absolute;
    left: 100%; top: 50%;
    width: calc(100% + 24px - 56px);
    height: 2px;
    background: linear-gradient(90deg, var(--red), rgba(215, 30, 40, 0.2));
    transform: translateX(0);
}
.process-step h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.94rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== Pricing ===== */
.pricing { padding: 100px 0; background: var(--white); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.price-card {
    position: relative;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card-featured {
    border: 2px solid var(--red);
    box-shadow: var(--shadow-red);
}
.price-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 40px;
    white-space: nowrap;
}
.price-head { margin-bottom: 20px; }
.price-head h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}
.price-for { font-size: 0.9rem; color: var(--text-light); }
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.price-from { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }
.price-value { font-size: 2.4rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.price-unit { font-size: 0.85rem; color: var(--text-light); }
.price-hosting {
    font-size: 0.9rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 24px;
}
.price-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 4px;
}
.price-features li {
    position: relative;
    padding-left: 28px;
    font-size: 0.93rem;
    color: var(--text);
}
.price-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 3px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D71E28' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
    font-size: 1rem;
}
.pricing-note a { color: var(--red); font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ===== Our Work ===== */
.work { padding: 100px 0; background: var(--gray-50); }
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.work-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.work-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.work-thumb {
    height: 180px;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 18px;
}
.work-thumb-1 { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.work-thumb-2 { background: linear-gradient(135deg, #0ea5a0, #0b2f4a); }
.work-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 22px 22px;
}
.work-badge {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}
.work-body { padding: 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.work-body p { font-size: 0.93rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.work-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: 4px;
}
.work-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.work-link:hover svg { transform: translate(2px, -2px); }
.work-card-cta {
    background: linear-gradient(150deg, var(--red), var(--red-dark));
    justify-content: center;
}
.work-card-cta .work-body { justify-content: center; }
.work-card-cta h3, .work-card-cta p { color: var(--white); }
.work-card-cta p { opacity: 0.9; }
.work-card-cta .btn { margin-top: 10px; align-self: flex-start; }

/* ===== CTA Band ===== */
.cta-band {
    background:
        radial-gradient(600px 300px at 100% 0%, rgba(240, 58, 67, 0.25), transparent 60%),
        linear-gradient(120deg, var(--navy-deep), var(--navy));
    padding: 68px 0;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-band-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    max-width: 640px;
}
.cta-band-text p { color: rgba(255, 255, 255, 0.72); font-size: 1.05rem; }

/* ===== Contact ===== */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.contact-item svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.contact-item a, .contact-item span { color: var(--text); font-weight: 500; transition: var(--transition); }
.contact-item a:hover { color: var(--red); }
.contact-highlight {
    margin-top: 30px;
    padding: 22px 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
}
.ch-title { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ch-sub { font-size: 0.9rem; color: var(--text-light); }

.contact-form-wrap {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 38px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-note { font-size: 0.8rem; color: var(--text-light); margin-bottom: 18px; }
.req { color: var(--red); font-weight: 700; }
.form-optional { color: var(--text-light); font-weight: 400; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(215, 30, 40, 0.15);
}
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-status { margin-top: 12px; font-size: 0.88rem; min-height: 1.4em; }
.form-status-error { color: var(--red-dark); }
.form-status-info { color: var(--text-light); }
.form-status-success { color: #15803d; }
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0; left: 0;
    height: 0; width: 0;
    z-index: -1;
    overflow: hidden;
}

/* ===== Footer ===== */
.footer { background: var(--navy-deep); padding: 62px 0 30px; }
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    column-gap: 40px;
    align-items: start;
}
.footer-brand { padding-right: 24px; }
.footer-logo { height: 40px; width: auto; }
.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    margin-top: 16px;
    max-width: 340px;
    line-height: 1.6;
}
.footer-col h3 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    margin-bottom: 10px;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.84rem; }
.footer-made { color: rgba(255, 255, 255, 0.4) !important; }

/* ===== Pricing page ===== */
.page-hero {
    position: relative;
    padding: 150px 0 40px;
    text-align: center;
    background:
        radial-gradient(1000px 500px at 80% -20%, rgba(215, 30, 40, 0.08), transparent 60%),
        linear-gradient(180deg, var(--gray-50), var(--white));
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.page-hero-sub {
    color: var(--text-light);
    font-size: 1.14rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 26px;
}
.page-hero-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.ph-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
}
.ph-pill svg { width: 15px; height: 15px; color: var(--red); }

.phone-digits { color: var(--text-light); font-weight: 400; font-size: 0.85em; }

.tiers-section { padding: 60px 0 90px; background: var(--white); }
.tiers-section .section-title, .care-section .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.tiers-section .section-subtitle, .care-section .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }

.tier-grid, .care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}
.tier-grid .price-card, .care-grid .price-card {
    display: flex;
    flex-direction: column;
    padding: 32px 26px;
}
.tier-grid .price-features, .care-grid .price-features { flex: 1; }
.price-value-sm { font-size: 1.85rem; }
.tier-ideal {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 20px;
    padding-top: 14px;
    border-top: 1px dashed var(--gray-200);
}

.enterprise-band {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 38px 44px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(500px 260px at 100% 0%, rgba(240, 58, 67, 0.28), transparent 60%),
        linear-gradient(120deg, var(--navy-deep), var(--navy));
}
.enterprise-eyebrow {
    display: inline-block;
    color: var(--red-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.enterprise-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    max-width: 640px;
}
.enterprise-text p { color: rgba(255, 255, 255, 0.7); font-size: 0.98rem; line-height: 1.6; max-width: 620px; }
.enterprise-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.enterprise-price { color: var(--white); font-size: 1.3rem; font-weight: 800; }

.care-section { padding: 100px 0; background: var(--gray-50); }
.care-section .section-tag { display: block; text-align: center; }

/* Included with every website */
.included {
    position: relative;
    padding: 100px 0;
    background: var(--navy);
    overflow: hidden;
}
.included-decor {
    position: absolute;
    top: -20%; left: -10%;
    width: 55%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(215, 30, 40, 0.20), transparent 60%);
    z-index: 0;
}
.included-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.included-intro .section-title { margin-bottom: 16px; }
.included-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}
.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}
.included-list svg {
    width: 18px; height: 18px;
    color: var(--red-light);
    flex-shrink: 0;
    margin-top: 2px;
}

nav .nav-links a[aria-current="page"] { color: var(--red); }

@media (max-width: 1024px) {
    .tier-grid, .care-grid { grid-template-columns: repeat(2, 1fr); }
    .included-grid { grid-template-columns: 1fr; gap: 36px; }
    .enterprise-band { padding: 32px; }
}
@media (max-width: 560px) {
    .tier-grid, .care-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .included-list { grid-template-columns: 1fr; }
    .enterprise-cta { width: 100%; }
    .enterprise-cta .btn { width: 100%; }
}

/* ===== Fade-in animations (CSS only, triggered by JS) ===== */
.js-loaded .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-loaded .fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    .fade-in { opacity: 1; transform: none; }
    .hero-mark, .hero-float { animation: none; }
}

/* ===== Print ===== */
@media print {
    .navbar, .nav-overlay, .hero-visual, .contact-form-wrap, .skip-link, .cta-band { display: none; }
    body { font-size: 12pt; color: #000; }
    .why, .trustbar, .footer { background: #fff; }
    .section-title-light, .why-card h3, .why-num, .trust-item, .footer-col h3, .footer-col a, .footer-brand p, .footer-bottom p { color: #000 !important; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 130px; }
    .hero-visual { min-height: 340px; order: -1; }
    .hero-sub { max-width: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
    .process-step:not(:last-child) .process-marker::after { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; row-gap: 36px; }
    .footer-brand { grid-column: 1 / -1; padding-right: 0; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 32px 32px;
        gap: 22px;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: -8px 0 30px rgba(20, 35, 63, 0.12);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.05rem; }
    .btn-nav { width: 100%; }

    .trustbar-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-band-inner { flex-direction: column; align-items: flex-start; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }
    .hero-float-1 { left: 0; }
    .hero-float-2 { right: 0; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; }
    .contact-form-wrap { padding: 28px 22px; }
}

@media (max-width: 420px) {
    .hero-float { display: none; }
    .footer-content { grid-template-columns: 1fr; }
}
