:root {
    --bg: #f7f8fb;
    --panel: #ffffff;
    --card: #ffffff;
    --border: #e5e8ef;
    --primary: #ff7a1a;
    --primary-2: #ffae32;
    --text: #1c1f2b;
    --muted: #5c6576;
    --accent: #34b5d1;
    --shadow: 0 20px 60px rgba(16, 24, 40, 0.12);
    --radius: 16px;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 174, 50, 0.14), transparent 25%),
        radial-gradient(circle at 82% 6%, rgba(52, 181, 209, 0.2), transparent 28%),
        linear-gradient(180deg, #fdfdfd 0%, #f6f7fb 35%, #eef1f7 100%);
    min-height: 100vh;
    line-height: 1.6;
}

a {
    color: var(--text);
    text-decoration: none;
}

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

.page-wrapper {
    max-width: 1220px;
    margin: 0 auto;
    padding: 20px clamp(16px, 4vw, 32px);
}

.site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px clamp(16px, 2vw, 22px);
    margin: 10px 0 24px;
    position: sticky;
    top: 12px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.05);
    overflow: hidden;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 44px;
    width: auto;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--muted);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    color: var(--text);
    background: #f2f4f8;
    transform: translateY(-1px);
}

.site-nav a.active {
    color: var(--text);
    background: linear-gradient(120deg, rgba(255, 122, 26, 0.16), rgba(52, 181, 209, 0.18));
    border: 1px solid rgba(255, 122, 26, 0.32);
}

.nav-toggle {
    display: none;
}

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

.btn {
    border: 1px solid var(--border);
    color: var(--text);
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border: none;
    color: #fff;
    box-shadow: 0 12px 30px rgba(255, 122, 26, 0.35);
}

.btn.ghost {
    background: #f3f6fb;
    color: var(--text);
    box-shadow: none;
}

.btn.full {
    width: 100%;
}

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

.section {
    padding: clamp(48px, 8vw, 96px) 0;
}

.wave-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, #ff7a1a 0%, #34b5d1 50%, #ff7a1a 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.wave-text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 10px;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 122, 26, 0.5), rgba(52, 181, 209, 0.5), rgba(255, 122, 26, 0.5));
    background-size: 200% 100%;
    border-radius: 999px;
    opacity: 0.75;
    transition: width 0.8s ease;
}

.wave-text.animate {
    animation: waveTextShift 4s ease-in-out infinite;
    margin-bottom:20px;
}

.wave-text.animate::before {
    width: 100%;
    animation: waveUnderline 2.6s ease-in-out infinite;
}

.wave-text.animate {
    margin-bottom:20px;
}

@keyframes waveTextShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes waveUnderline {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(24px, 5vw, 48px);
    align-items: center;
}

.hero-content {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    margin: 12px 0;
}

.lead {
    color: #394155;
    font-size: 18px;
    margin-bottom: 18px;
}

.badge-row,
.cta-row,
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.badge-row {
    margin: -2px 0 4px;
}

.cta-row {
    margin: 6px 0;
}

.hero-meta {
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    min-height: 360px;
    padding: 12px;
}

.hero-visual::after {
    content: none;
}

.hero-visual::before {
    content: none;
}

.glass-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #ffffff, #f7f9ff);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: none;
    max-width: 520px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.stat-label {
    color: var(--muted);
    font-size: 12px;
}

.stat-value {
    font-weight: 700;
    font-size: 20px;
}

.legend {
    margin-top: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.25);
}

.floating-card {
    position: absolute;
    right: 6%;
    bottom: -20px;
    background: #ffffff;
    border: 1px solid rgba(255, 122, 26, 0.25);
    border-radius: 14px;
    padding: 12px 16px;
    max-width: 260px;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.16);
    z-index: 2;
    opacity: 0.98;
}

.progress {
    width: 100%;
    background: #f1f4f9;
    border-radius: 12px;
    height: 6px;
    margin: 8px 0;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 12px;
    width: 0;
}

.status {
    margin: 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.section-head.centered {
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

h2 {
    margin: 8px 0 6px;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
}

h3 {
    margin: 8px 0;
}

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

.muted.small {
    font-size: 12px;
}

.section-sub {
    margin-top: 6px;
    margin-bottom: 20px;
    display: block;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text);
    background: #fff;
}

.pill.accent {
    background: linear-gradient(120deg, rgba(255, 122, 26, 0.12), rgba(52, 181, 209, 0.12));
    border: none;
    color: #1c1f2b;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 10px;
    box-shadow: none;
}

.pill.soft {
    color: var(--muted);
    background: #f5f7fb;
}

.feature-grid .card-grid,
.services .service-grid,
.pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 960px) {
    .services .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

.card,
.service-card,
.pricing-card,
.form-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.service-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    box-shadow: 0 16px 30px rgba(16, 24, 40, 0.08);
    padding: 22px;
}

.card .icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 122, 26, 0.15), rgba(52, 181, 209, 0.15));
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(255, 174, 50, 0.18);
}

.feature-grid.stacked {
    padding-top: 110px;
    scroll-margin-top: 240px;
}

.feature-grid.stacked .card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
}

.feature-grid.stacked .section-head {
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .feature-grid.stacked .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

.feature-grid.stacked .card {
    position: relative;
    transform: translateY(var(--offset, 30px));
    opacity: 0.45;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
    padding: 22px;
    z-index: 1;
}

.feature-grid.stacked .card:nth-child(odd) {
    margin-top: 14px;
}

.feature-grid.stacked .card:nth-child(even) {
    margin-top: -4px;
}

.service-card .service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.icon-pill {
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
}

.service-card .tag-text {
    display: none;
}

.service-card ul,
.pricing-card ul,
.split-card ul {
    padding-left: 18px;
    color: var(--muted);
}

.text-link {
    color: var(--accent);
    font-weight: 600;
}

.solutions .solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.solutions .solution-tags .pill {
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.12);
    opacity: 0.9;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.solutions .solution-tags .pill.float {
    transform: translateY(-6px);
    opacity: 1;
}

.cta-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(120deg, rgba(255, 122, 26, 0.08), rgba(52, 181, 209, 0.12));
    border: 1px solid rgba(255, 122, 26, 0.25);
    border-radius: var(--radius);
    padding: clamp(16px, 4vw, 28px);
    box-shadow: var(--shadow);
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pricing-card .price {
    font-size: 28px;
    font-weight: 700;
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(255, 122, 26, 0.14), rgba(52, 181, 209, 0.14));
    border: 1px solid rgba(255, 122, 26, 0.32);
    transform: translateY(-4px);
}

.faq .faq-list {
    display: grid;
    gap: 12px;
}

details {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
}

details summary {
    cursor: pointer;
    font-weight: 600;
}

.contact .section-head {
    align-items: flex-start;
}

.contact .form-card {
    width: min(520px, 100%);
    display: grid;
    gap: 10px;
}

label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
}

textarea {
    resize: vertical;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.split-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.check-list li {
    position: relative;
    padding-left: 18px;
}

.check-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.split-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(16, 24, 40, 0.14);
    min-height: 280px;
    padding-bottom: 42px;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05);
}

.split-panel.has-image .overlay-panel {
    position: absolute;
    right: 18px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 360px;
    margin: 0;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.18);
    z-index: 2;
}

.image-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.image-panels .panel {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 220px;
    box-shadow: var(--shadow);
}

.image-panels .panel .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 16, 28, 0.2), rgba(12, 16, 28, 0.6));
}

.image-panels .panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-panels .panel .content {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    color: #fff;
    z-index: 1;
}

.image-panels .panel .content h3 {
    margin: 0 0 6px;
    color: #fff;
}

.image-panels .panel .content p {
    margin: 0;
    color: #eef1f6;
}

.site-footer {
    margin: 48px 0 12px;
    padding: 28px clamp(16px, 2vw, 22px) 18px;
    border: 1px solid var(--border);
    color: var(--muted);
    background: #f9fafc;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.site-footer h4 {
    margin: 0 0 8px;
    color: var(--text);
}

.contact-list li {
    margin-bottom: 6px;
}

.footer-base {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-base .pill {
    color: var(--text);
}

.text-link:hover,
.site-footer a:hover {
    color: var(--primary-2);
}

@media (max-width: 768px) {
    .floating-card {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 12px;
    }
    .hero-visual {
        min-height: auto;
        padding: 0;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 23, 41, 0.35);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 90;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100;
}

.modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: clamp(18px, 4vw, 28px);
    width: min(640px, 100%);
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.15);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: #f3f6fb;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--text);
}

#booking-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

#booking-result {
    margin: 4px 0 0;
    font-size: 13px;
}

#booking-result.success {
    color: #1c7c36;
}

#booking-result.error {
    color: #c33434;
}

@media (max-width: 900px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 14px;
    }
    .brand {
        justify-self: start;
    }
    .site-nav {
        position: relative;
        flex: 0 0 auto;
    }
    .site-nav ul {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 10px;
        margin-top: 8px;
        box-shadow: 0 12px 24px rgba(16, 24, 40, 0.12);
        position: absolute;
        top: 100%;
        right: 0;
        width: calc(100vw - 36px);
        max-width: 320px;
        z-index: 20;
    }
    .site-nav ul.open {
        display: flex;
    }
    .nav-toggle {
        display: inline-flex;
        background: #f5f7fb;
        border: 1px solid var(--border);
        color: var(--text);
        padding: 12px 14px;
        border-radius: 12px;
        cursor: pointer;
        font-size: 18px;
        line-height: 1;
    }
    .header-cta {
        display: none;
    }
}

@media (max-width: 600px) {
    .site-header {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
    }
    .header-cta {
        justify-content: flex-start;
    }
    .logo img {
        height: 38px;
    }
    .hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-visual {
        padding: 0;
        min-height: 260px;
    }
    .glass-card {
        max-width: 100%;
    }
}
