@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
    --services-deep: #0f1916;
    --services-accent: #9cd0b4;
    --services-copy: #52655c;
    --services-border: rgba(16, 32, 27, 0.08);
    --services-surface: rgba(255, 255, 255, 0.9);
    --services-shadow: 0 24px 60px rgba(11, 22, 19, 0.14);
}

body {
    background:
        radial-gradient(circle at top left, rgba(156, 208, 180, 0.2), transparent 26%),
        linear-gradient(180deg, #f7f4ed 0%, #ffffff 54%, #eef5f1 100%);
}

.navigation {
    position: fixed;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(8, 18, 15, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navigation .brand a,
.navigation .links a {
    color: #ffffff;
}

.navigation .links a:hover {
    color: white;
}

.services-page h1,
.services-page h2,
.services-page h3 {
    font-family: 'Sora', 'Poppins', sans-serif;
    color: #10201b;
}

.services-page p,
.services-page a,
.services-page li,
.services-page span,
.services-page strong {
    font-family: 'Manrope', 'Poppins', sans-serif;
}

.services-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: 2rem;
    align-items: center;
    padding-top: calc(5vh + 5rem);
    padding-bottom: 2rem;
    min-height: 70vh;
    background:
        linear-gradient(135deg, rgba(8, 18, 15, 0.88), rgba(24, 54, 44, 0.64)),
        url(../images/image_9.jpg) center/cover;
}

.services-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--services-accent);
}

.services-hero h1 {
    max-width: 13ch;
    font-size: clamp(3.2rem, 7vw, 5.4rem);
    line-height: 1;
    color: #ffffff;
}

.services-lead {
    max-width: 42rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8rem;
    color: rgba(255, 255, 255, 0.82);
}

.services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.services-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 13rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.services-button:hover {
    transform: translateY(-2px);
}

.services-button--primary {
    color: #0c1713;
    background: linear-gradient(135deg, #c4ead4, #92ccae);
    box-shadow: 0 18px 34px rgba(120, 178, 145, 0.28);
}

.services-button--secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.services-summary,
.services-card,
.services-process__item,
.services-cta__content {
    box-shadow: var(--services-shadow);
}

.services-summary {
    display: grid;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.75rem;
    padding: 2rem;
    background: rgba(245, 242, 236, 0.96);
}

.services-summary div {
    display: grid;
    gap: 0.35rem;
}

.services-summary strong {
    font-size: 1.05rem;
    color: #182d26;
}

.services-summary span {
    color: var(--services-copy);
}

.services-section,
.services-process,
.services-comparison,
.services-cta {
    padding-top: 5rem;
    padding-bottom: 1rem;
}

.services-section__heading {
    max-width: 46rem;
    margin-bottom: 2rem;
}

.services-grid,
.services-process__grid {
    display: grid;
    gap: 1.5rem;
}

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

.services-card,
.services-process__item {
    border: 1px solid var(--services-border);
    border-radius: 1.5rem;
    padding: 1.75rem;
    background: var(--services-surface);
}

.services-card p,
.services-process__item p,
.services-comparison__content p,
.services-cta__content p {
    margin-top: 0.8rem;
    color: var(--services-copy);
}

.services-tag {
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #284237;
    background: rgba(156, 208, 180, 0.34);
}

.services-link {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 800;
    color: #1f5a45;
}

.services-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.services-list li {
    position: relative;
    padding-left: 1.4rem;
}

.services-list li::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #7ab68f, #2f5244);
}

/* ---------- template cards ---------- */

.services-template-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.75rem;
}

.services-template-card {
    display: flex;
    flex-direction: column;
    border-radius: 1.75rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--services-border);
    box-shadow: 0 4px 24px rgba(11, 22, 19, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.services-template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(11, 22, 19, 0.13);
}

/* browser chrome bar */
.services-template-card__preview {
    position: relative;
    height: 18rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.services-template-card__preview::before {
    content: '';
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 2.25rem;
    padding: 0 0.85rem;
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(4px);
    /* traffic-light dots via box-shadow on a tiny pseudo circle */
    background-image:
        radial-gradient(circle, #ff5f57 0%, #ff5f57 100%),
        radial-gradient(circle, #febc2e 0%, #febc2e 100%),
        radial-gradient(circle, #28c840 0%, #28c840 100%);
    background-size: 0.65rem 0.65rem, 0.65rem 0.65rem, 0.65rem 0.65rem;
    background-repeat: no-repeat;
    background-position: 0.75rem center, 1.65rem center, 2.55rem center;
}

.services-template-card__preview__canvas {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.85rem;
    overflow: hidden;
}

.services-template-card__preview img {
    position: absolute;
    inset: 2.25rem 0 0 0;
    width: 100%;
    height: calc(100% - 2.25rem);
    object-fit: cover;
    object-position: top;
    z-index: 1;
}

.services-template-card__preview--business { background: linear-gradient(160deg, #ddf0e6, #bfe3d0); }
.services-template-card__preview--lead     { background: linear-gradient(160deg, #dce8fb, #c4d5f7); }
.services-template-card__preview--portfolio{ background: linear-gradient(160deg, #fae8df, #f4d4c6); }
.services-template-card__preview--directory{ background: linear-gradient(160deg, #e5edda, #d0e0c0); }
.services-template-card__preview--brand    { background: linear-gradient(160deg, #111e1a, #1c3429); }
.services-template-card__preview--profile  { background: linear-gradient(160deg, #ebe6f8, #d8ceef); }

.services-template-card__preview--business {
    height: 22rem;
}

.services-template-card__preview--business img {
    inset: 2.25rem auto 0 50%;
    width: auto;
    height: calc(100% - 2.25rem);
    max-width: none;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: top center;
}

/* mock UI skeleton elements */
.stc-nav {
    height: 0.45rem;
    border-radius: 0.2rem;
    background: rgba(0,0,0,0.14);
    width: 100%;
}

.stc-hero {
    height: 3.5rem;
    border-radius: 0.5rem;
    background: rgba(0,0,0,0.12);
}

.stc-hero--tall     { height: 5.5rem; }
.stc-hero--centered {
    height: 4rem;
    width: 70%;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
}

.stc-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    flex: 1;
}

.stc-blocks--two { grid-template-columns: repeat(2, 1fr); }

.stc-blocks div, .stc-features div {
    border-radius: 0.4rem;
    background: rgba(0,0,0,0.1);
}

.stc-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    flex: 1;
}

.stc-gallery div {
    border-radius: 0.4rem;
    background: rgba(0,0,0,0.11);
}

.stc-cta {
    height: 1.6rem;
    border-radius: 999px;
    width: 45%;
    margin: 0.25rem auto 0;
    background: rgba(0,0,0,0.2);
}

.stc-header-band {
    height: 0.9rem;
    border-radius: 0.2rem;
    background: rgba(0,0,0,0.15);
    width: 55%;
}

.stc-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.stc-list div {
    height: 0.5rem;
    border-radius: 0.2rem;
    background: rgba(0,0,0,0.1);
}

.stc-list div:nth-child(even) { width: 80%; }

.stc-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    flex: 1;
}

.stc-profile-hero {
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.24);
    width: 52%;
    align-self: center;
    margin: 0 auto;
}

/* card body */
.services-template-card__body {
    padding: 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid var(--services-border);
}

.services-template-card__body h3 {
    margin-top: 0.25rem;
    font-size: 1.15rem;
}

.services-template-card__body p {
    margin-top: 0.6rem;
    color: var(--services-copy);
    font-size: 0.95rem;
    line-height: 1.6rem;
    flex: 1;
}

/* start here button */
.services-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    color: #0c1713;
    background: linear-gradient(135deg, #c4ead4, #92ccae);
    box-shadow: 0 18px 34px rgba(120, 178, 145, 0.28);
    transition: 0.25s ease;
}

.services-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(120, 178, 145, 0.36);
}

.services-start-btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(120, 178, 145, 0.2);
}

.services-start-btn--demo {
    margin-top: 1rem;
}

.services-platform-card .services-start-btn + .services-start-btn {
    margin-top: 0.8rem;
}

.services-start-btn--soon {
    color: #2e2510;
    background: linear-gradient(135deg, #ede4b8, #d4c07a);
    box-shadow: 0 18px 34px rgba(160, 130, 40, 0.18);
}

.services-start-btn--soon:hover {
    box-shadow: 0 22px 40px rgba(160, 130, 40, 0.26);
}

.services-start-btn--soon:active {
    box-shadow: 0 10px 20px rgba(160, 130, 40, 0.14);
    transform: translateY(0);
}

.services-start-btn--future {
    color: var(--services-accent);
    background: rgba(156, 208, 180, 0.12);
    border-color: rgba(156, 208, 180, 0.28);
    box-shadow: none;
}

.services-start-btn--future:hover {
    background: rgba(156, 208, 180, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(100, 180, 140, 0.18);
}

/* ---------- platform cards ---------- */

.services-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.services-platform-card {
    position: relative;
    border: 1px solid var(--services-border);
    border-radius: 1.75rem;
    padding: 1.75rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(11, 22, 19, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    overflow: hidden;
    height: 35rem;
}

.services-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(11, 22, 19, 0.13);
}

/* live card: green accent top bar */
.services-platform-card--live {
    border-top: 3px solid #3da872;
    background: linear-gradient(170deg, #f2fbf6, #ffffff 40%);
}

/* soon cards: soft muted surface */
.services-platform-card--soon {
    background: #fafbfa;
    border-style: dashed;
    border-color: rgba(16, 32, 27, 0.12);
}

/* future card: dark rich surface */
.services-platform-card--future {
    background: linear-gradient(145deg, #111e1a, #1c3429);
    border-color: rgba(156, 208, 180, 0.14);
    box-shadow: 0 8px 36px rgba(6, 14, 12, 0.28);
}

.services-platform-card--future:hover {
    box-shadow: 0 20px 54px rgba(6, 14, 12, 0.4);
}

.services-platform-card--future h3,
.services-platform-card--future .services-platform-industry {
    color: #e0f2ea;
}

.services-platform-card--future p:not(.services-tag):not(.services-platform-industry) {
    color: rgba(200, 230, 215, 0.72);
}

.services-platform-card--future .services-link {
    color: var(--services-accent);
}

/* card header row */
.services-platform-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.services-platform-card__header .services-tag {
    margin-bottom: 0;
}

/* status badge */
.services-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
}

.services-platform-badge--live {
    color: #155c32;
    background: rgba(50, 180, 100, 0.14);
    border: 1px solid rgba(50, 180, 100, 0.22);
}

.services-platform-badge--live::before {
    content: '';
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #28c840;
    box-shadow: 0 0 0 2px rgba(40, 200, 64, 0.3);
}

.services-platform-badge--soon {
    color: #5a4812;
    background: rgba(210, 165, 30, 0.12);
    border: 1px solid rgba(210, 165, 30, 0.2);
}

.services-platform-badge--future {
    color: var(--services-accent);
    background: rgba(156, 208, 180, 0.12);
    border: 1px solid rgba(156, 208, 180, 0.22);
}

/* platform name + industry */
.services-platform-industry {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--services-copy) !important;
    margin-top: 0.15rem !important;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.services-platform-card p:not(.services-tag):not(.services-platform-industry) {
    margin-top: 0;
    color: var(--services-copy);
    font-size: 0.95rem;
    line-height: 1.65rem;
}

.services-platform-card h3 {
    font-size: 1.35rem;
}

.services-platform-card .services-list {
    margin-top: 1rem;
}

.services-platform-card .services-link {
    margin-top: 1.25rem;
    font-size: 0.9rem;
}

/* ---------- pricing section ---------- */

.services-pricing {
    padding-top: 5rem;
    padding-bottom: 1rem;
}

.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.services-pricing-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--services-border);
    border-radius: 1.75rem;
    padding: 2rem;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(11, 22, 19, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.services-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(11, 22, 19, 0.12);
}

.services-pricing-card--featured {
    background: linear-gradient(160deg, #0f1c18, #1a3328);
    border-color: rgba(156, 208, 180, 0.16);
    box-shadow: 0 8px 36px rgba(6, 14, 12, 0.28);
}

.services-pricing-card--featured:hover {
    box-shadow: 0 24px 56px rgba(6, 14, 12, 0.4);
}

.services-pricing-card--featured h2,
.services-pricing-card--featured h3,
.services-pricing-card--featured strong,
.services-pricing-card--featured .services-pricing-card__amount strong {
    color: #ffffff;
}

.services-pricing-card--featured .services-pricing-card__desc,
.services-pricing-card--featured .services-pricing-card__amount span {
    color: rgba(200, 230, 215, 0.72);
}

.services-pricing-card--featured .services-list li {
    color: rgba(200, 230, 215, 0.85);
}

.services-pricing-card--featured .services-list li::before {
    background: linear-gradient(135deg, var(--services-accent), #6ab896);
}

.services-pricing-card__top {
    margin-bottom: 1.5rem;
}

.services-pricing-card__amount {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0.85rem 0 0;
}

.services-pricing-card__amount strong {
    font-family: 'Sora', 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #10201b;
}

.services-pricing-card__amount span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--services-copy);
}

.services-pricing-card__desc {
    margin-top: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.65rem;
    color: var(--services-copy);
}

/* ---------- process grid ---------- */

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

.services-process__item span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    font-family: 'Sora', 'Poppins', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #183129, #2d5a4b);
}

.services-process__item h3 {
    margin-top: 1rem;
}

.services-cta__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--services-border);
    border-radius: 1.75rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.92);
}

.services-cta {
    padding-bottom: 5rem;
}

.services-cta__content {
    background: linear-gradient(135deg, rgba(16, 29, 25, 0.96), rgba(32, 65, 53, 0.95));
}

.services-cta__content h2,
.services-cta__content p {
    color: #ffffff;
}

.services-cta__content p:not(.services-eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.footer {
    color: #f5f5f5;
    background: #0d1814;
    padding: 2rem 1rem 2.75rem;
    text-align: center;
}

.footer h3,
.footer p {
    color: #f5f5f5;
}

.chat {
    border-radius: 999px;
    background: linear-gradient(135deg, #214538, #13251f);
    z-index: 20000;
}

@media screen and (max-width: 90rem) {
    .services-template-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media screen and (max-width: 72rem) {
    .services-hero,
    .services-grid,
    .services-template-grid,
    .services-platform-grid,
    .services-pricing-grid,
    .services-process__grid,
    .services-cta__content {
        grid-template-columns: 1fr;
    }

    .services-hero {
        min-height: auto;
    }

    .services-template-card--business-feature {
        grid-column: span 1;
    }

    .services-hero h1 {
        max-width: 100%;
    }
}

@media screen and (max-width: 52rem) {
    .navigation {
        background: rgba(8, 18, 15, 0.82);
    }

    .services-hero h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .services-button {
        width: 100%;
    }

    .services-summary,
    .services-card,
    .services-process__item,
    .services-comparison__content,
    .services-cta__content {
        padding: 1.35rem;
    }
}