:root {
    --bg: #fbfbff;
    --ink: #252438;
    --muted: #5a5a70;

    /* feminine & professional palette */
    --primary: #7c6cff;
    /* soft purple */
    --primary-2: #ff6fb1;
    /* rose accent */
    --teal: #3cc7c3;
    /* fresh accent */
    --lav: #efeaff;
    /* very light lavender */
    --card: rgba(255, 255, 255, 0.75);
    --stroke: rgba(60, 40, 120, 0.12);

    --shadow: 0 18px 50px rgba(25, 16, 66, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: radial-gradient(1200px 800px at 10% 10%, #fff 0%, var(--bg) 60%, #f6f6ff 100%);
}

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

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

/* Background blobs */
.bg-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.blob {
    position: absolute;
    filter: blur(40px);
    opacity: .55;
    border-radius: 999px;
}

.blob-1 {
    width: 520px;
    height: 520px;
    left: -140px;
    top: -140px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 111, 177, .55), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(124, 108, 255, .55), transparent 60%);
}

.blob-2 {
    width: 620px;
    height: 620px;
    right: -220px;
    top: 80px;
    background: radial-gradient(circle at 30% 30%, rgba(60, 199, 195, .45), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(124, 108, 255, .45), transparent 60%);
}

.blob-3 {
    width: 520px;
    height: 520px;
    left: 30%;
    bottom: -240px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 111, 177, .35), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(124, 108, 255, .35), transparent 60%);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(251, 251, 255, .65);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 108, 255, .18), rgba(255, 111, 177, .16));
    border: 1px solid var(--stroke);
    color: var(--primary);
}

.brand-text {
    line-height: 1;
}

.brand-name {
    display: block;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 18px;
}

.brand-sub {
    display: block;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: 4px;
}

.menu {
    display: flex;
    gap: 18px;
    align-items: center;
    color: #3a3953;
}

.menu a {
    font-weight: 600;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 12px;
    opacity: .85;
}

.menu a:hover {
    background: rgba(124, 108, 255, .10);
    opacity: 1;
}

.menu a.active {
    background: rgba(255, 111, 177, .14);
    border: 1px solid rgba(255, 111, 177, .20);
    opacity: 1;
}

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

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .65);
    box-shadow: 0 8px 20px rgba(25, 16, 66, .08);
    cursor: pointer;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #3a3953;
    margin: 4px auto;
    border-radius: 999px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    cursor: pointer;
    user-select: none;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    box-shadow: 0 14px 30px rgba(124, 108, 255, .24);
}

.btn-primary:hover {
    box-shadow: 0 18px 40px rgba(124, 108, 255, .28);
}

.btn-soft {
    background: rgba(124, 108, 255, .12);
    border-color: rgba(124, 108, 255, .18);
    color: #38375a;
}

.btn-soft:hover {
    background: rgba(124, 108, 255, .16);
}

.btn-ghost {
    background: rgba(255, 255, 255, .55);
    border-color: var(--stroke);
    color: #38375a;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .75);
}

/* Hero */
.hero {
    padding: 52px 0 14px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .55);
    font-weight: 700;
    font-size: 12px;
    color: #3a3953;
    letter-spacing: .02em;
}

.hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero .accent {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-2) 55%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 54ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid var(--stroke);
    color: #3a3953;
    font-weight: 700;
    font-size: 13px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

/* Hero visual card */
.hero-visual .card-visual {
    position: relative;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .55));
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    padding: 18px;
    overflow: hidden;
    min-height: 360px;
}

.sparkles {
    position: absolute;
    inset: -40% -20%;
    background:
        radial-gradient(circle at 25% 35%, rgba(255, 111, 177, .20), transparent 48%),
        radial-gradient(circle at 80% 25%, rgba(124, 108, 255, .22), transparent 46%),
        radial-gradient(circle at 60% 80%, rgba(60, 199, 195, .16), transparent 50%);
}

.server-illustration {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    justify-items: center;
    padding: 22px 10px 8px;
}

.rack {
    width: min(330px, 100%);
    border-radius: 20px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(124, 108, 255, .14), rgba(255, 111, 177, .12));
    border: 1px solid rgba(124, 108, 255, .18);
}
.services-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.services-header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.services-logo img{
  height: 48px;
  width: auto;
}

.services-menu{
  display: flex;
  gap: 14px;
}
.services-menu a{
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: #3a3953;
}
.services-menu a.active{
  background: rgba(124,108,255,.14);
}


.unit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .60);
    border: 1px solid rgba(60, 40, 120, .10);
    padding: 0 14px;
}

.unit+.unit {
    margin-top: 10px;
}

.pill {
    width: 88px;
    height: 12px;
    border-radius: 999px;
    background: rgba(124, 108, 255, .22);
}

.lights {
    display: flex;
    gap: 8px;
}

.lights i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 111, 177, .55);
}

.lights i:last-child {
    background: rgba(60, 199, 195, .50);
}

.flow {
    position: absolute;
    right: 4%;
    top: 26%;
    width: 210px;
    height: 220px;
    opacity: .9;
}

.line {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(124, 108, 255, .55), rgba(255, 111, 177, .45));
}

.l1 {
    width: 6px;
    height: 140px;
    right: 52px;
    top: 20px;
}

.l2 {
    width: 6px;
    height: 110px;
    right: 28px;
    top: 48px;
    background: linear-gradient(180deg, rgba(60, 199, 195, .45), rgba(124, 108, 255, .45));
}

.l3 {
    width: 6px;
    height: 80px;
    right: 4px;
    top: 72px;
    background: linear-gradient(180deg, rgba(255, 111, 177, .45), rgba(60, 199, 195, .40));
}

.bubble {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(60, 40, 120, .12);
    box-shadow: 0 10px 20px rgba(25, 16, 66, .12);
}

.b1 {
    right: 49px;
    top: 10px;
}

.b2 {
    right: 25px;
    top: 36px;
}

.b3 {
    right: 1px;
    top: 62px;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.stat {
    border-radius: 16px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid var(--stroke);
    padding: 12px;
}

.stat-title {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
}

.stat-value {
    margin: 6px 0 0;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 18px;
}

/* Sections */
.section {
    padding: 58px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-head h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    max-width: 60ch;
    line-height: 1.6;
}

.section-soft {
    background: linear-gradient(180deg, rgba(239, 234, 255, .55), rgba(255, 255, 255, 0));
    border-top: 1px solid rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .03);
}

.grid {
    display: grid;
    gap: 16px;
}

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

.service-card {
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--stroke);
    box-shadow: 0 18px 40px rgba(25, 16, 66, .08);
    padding: 18px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(25, 16, 66, .12);
}

.service-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(124, 108, 255, .14), rgba(255, 111, 177, .12));
    border: 1px solid rgba(124, 108, 255, .16);
    margin-bottom: 10px;
}

.service-card h3 {
    margin: 6px 0 8px;
    letter-spacing: -0.03em;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: start;
}

.checklist {
    margin: 18px 0 18px;
    display: grid;
    gap: 10px;
}

.check {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid var(--stroke);
    color: #3a3953;
    font-weight: 700;
}

.check span {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(60, 199, 195, .26), rgba(255, 111, 177, .20));
    border: 1px solid rgba(60, 40, 120, .12);
}

.about-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, .6);
}

.about-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.about-card-footer {
    padding: 14px;
}

.about-tag {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.about-small {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    grid-template-columns: repeat(2, 1fr);
}

.quote {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--stroke);
    box-shadow: 0 18px 40px rgba(25, 16, 66, .08);
    padding: 18px;
    margin: 0;
}

.quote blockquote {
    margin: 0 0 14px;
    color: #343356;
    font-weight: 600;
    line-height: 1.7;
}

.quote figcaption {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.who {
    margin: 0;
    font-weight: 800;
}

.role {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
}

/* Contact CTA */
.section-cta {
    padding: 64px 0;
}

.cta-grid {
    border-radius: calc(var(--radius) + 8px);
    background: linear-gradient(135deg, rgba(124, 108, 255, .14), rgba(255, 111, 177, .12));
    border: 1px solid rgba(124, 108, 255, .18);
    box-shadow: var(--shadow);
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.form {
    background: rgba(255, 255, 255, .55);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 16px;
}

.form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #3a3953;
    margin-bottom: 12px;
}

.form input,
.form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(60, 40, 120, .14);
    background: rgba(255, 255, 255, .72);
    padding: 12px 12px;
    font: inherit;
    outline: none;
}

.form input:focus,
.form textarea:focus {
    border-color: rgba(124, 108, 255, .45);
    box-shadow: 0 0 0 4px rgba(124, 108, 255, .12);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fineprint {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 26px 0 40px;
    color: #3a3953;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, .05);
    padding-top: 18px;
}

.footer-brand {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.footer-small {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 14px;
}

.footer-links a {
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.footer-links a:hover {
    border-color: var(--stroke);
    background: rgba(255, 255, 255, .5);
}

/* Responsive */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .cards {
        grid-template-columns: 1fr;
    }

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

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .burger {
        display: inline-block;
    }

    .menu.open {
        display: flex;
        position: absolute;
        top: 64px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        gap: 6px;
        padding: 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .78);
        border: 1px solid var(--stroke);
        box-shadow: 0 18px 50px rgba(25, 16, 66, .12);
    }

    .row {
        grid-template-columns: 1fr;
    }
}
/* ========= Services page (premium) ========= */

.services-hero{
  padding: 52px 0 26px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.hero-text h1{
  margin: 10px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}
.hero-tags{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.tag{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--stroke);
  font-weight: 800;
  font-size: 13px;
  color: #3a3953;
}

.hero-card{
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,255,255,.65);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.hero-list{
  margin: 0 0 14px;
  padding-left: 18px;
  color: #3a3953;
  font-weight: 700;
  line-height: 1.8;
}

/* category mini-nav */
.services-nav{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 20px;
}
.services-nav a{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--stroke);
  font-weight: 800;
  color: #3a3953;
}
.services-nav a:hover{
  background: rgba(124,108,255,.12);
}

/* sections */
.services-main{ padding: 10px 0 60px; }

.svc-section{
  margin-top: 18px;
  padding: 18px 0;
}
.svc-section-soft{
  border-radius: calc(var(--radius) + 8px);
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(239,234,255,.55), rgba(255,255,255,0));
  border: 1px solid rgba(0,0,0,.03);
}

.svc-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.svc-head h2{
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.svc-head p{
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

/* accordion grid */
.accordion-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* details styling */
.acc{
  border-radius: var(--radius);
  background: rgba(255,255,255,.62);
  border: 1px solid var(--stroke);
  box-shadow: 0 14px 30px rgba(25,16,66,.07);
  overflow: hidden;
}
.acc summary{
  list-style: none;
  cursor: pointer;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.acc summary::-webkit-details-marker{ display: none; }

.acc-left{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.acc-icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124,108,255,.14), rgba(255,111,177,.12));
  border: 1px solid rgba(124,108,255,.16);
  flex: 0 0 auto;
}
.acc-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #343356;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* chevron */
.acc-chevron{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(124,108,255,.18);
  background: rgba(124,108,255,.10);
  position: relative;
  flex: 0 0 auto;
}
.acc-chevron::before{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #3a3953;
  border-bottom: 2px solid #3a3953;
  transform: rotate(45deg);
  top: -2px;
}
.acc[open] .acc-chevron{
  background: rgba(255,111,177,.12);
  border-color: rgba(255,111,177,.18);
}
.acc[open] .acc-chevron::before{
  transform: rotate(-135deg);
  top: 2px;
}

.acc-body{
  padding: 0 16px 16px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}

/* CTA */
.services-cta{ margin-top: 22px; }
.services-cta-inner{
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, rgba(124,108,255,.14), rgba(255,111,177,.12));
  border: 1px solid rgba(124,108,255,.18);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Fixed logo bottom-right */
.fixed-logo{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: rgba(255,255,255,.70);
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 40px rgba(25,16,66,.14);
  display: grid;
  place-items: center;
  z-index: 999;
  backdrop-filter: blur(10px);
}
.fixed-logo img{
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .accordion-grid{ grid-template-columns: 1fr; }
  .services-cta-inner{ flex-direction: column; align-items: flex-start; }
}
