:root{
    --bg: #F6F2EF;
    --card: rgba(255,255,255,0.72);
    --card2: rgba(255,255,255,0.55);
    --text: rgba(0,0,0,0.88);
    --muted: rgba(0,0,0,0.62);
    --muted2: rgba(0,0,0,0.48);

    --primary: #1F6FEB;  /* Apple-ish blue */
    --primary2: #16A34A; /* subtle green */
    --shadow: 0 18px 40px rgba(0,0,0,0.08);
    --shadow2: 0 10px 26px rgba(0,0,0,0.06);

    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 12px;

    --border: rgba(0,0,0,0.07);
    --border2: rgba(0,0,0,0.10);

    --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
    margin:0;
    background:
            radial-gradient(800px 500px at 20% 10%, rgba(31,111,235,0.10), transparent 60%),
            radial-gradient(700px 450px at 80% 0%, rgba(22,163,74,0.10), transparent 60%),
            var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.3;
}

.container{
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

code{
    background: rgba(0,0,0,0.06);
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.95em;
}

/* Topbar */
.topbar{
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246,242,239,0.70);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.brand{
    display:flex;
    align-items:center;
    gap: 10px;
    text-decoration:none;
    color: var(--text);
}

.brand__logo{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
    border: 1px solid rgba(255,255,255,0.35);
}

.brand__name{
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 16px;
}

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

.nav__link{
    text-decoration:none;
    color: var(--muted);
    font-weight: 650;
    font-size: 14px;
}
.nav__link:hover{ color: var(--text); }

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

.hamburger{
    display:none;
    background: transparent;
    border: 0;
    padding: 10px;
    border-radius: 12px;
}
.hamburger span{
    display:block;
    width: 20px;
    height: 2px;
    background: rgba(0,0,0,0.55);
    margin: 4px 0;
    border-radius: 6px;
}

/* Mobile nav */
.mobileNav{
    border-top: 1px solid rgba(0,0,0,0.06);
    background: rgba(246,242,239,0.92);
    backdrop-filter: blur(10px);
}
.mobileNav__inner{
    padding: 12px 0 18px;
    display:flex;
    flex-direction: column;
    gap: 10px;
}
.mobileNav__link{
    text-decoration:none;
    color: rgba(0,0,0,0.75);
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.05);
}
.mobileNav__actions{
    display:flex;
    gap:10px;
    padding-top: 6px;
}

/* Buttons */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius: 16px;
    padding: 10px 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    border: 1px solid var(--border);
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    user-select:none;
    cursor:pointer;
}
.btn--big{ padding: 12px 18px; border-radius: 18px; }
.btn:active{ transform: translateY(1px) scale(0.99); }

.btn--primary{
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #1457D3);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 12px 22px rgba(31,111,235,0.25);
}
.btn--primary:hover{
    box-shadow: 0 16px 26px rgba(31,111,235,0.28);
}

.btn--ghost{
    color: rgba(0,0,0,0.72);
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.07);
}
.btn--ghost:hover{ background: rgba(255,255,255,0.72); }

/* Hero */
.hero{
    padding: 56px 0 10px;
}
.hero__grid{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.pill{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(0,0,0,0.06);
    color: rgba(0,0,0,0.70);
    font-weight: 700;
    font-size: 13px;
}
.pill__dot{
    width: 8px;
    height: 8px;
    background: rgba(31,111,235,0.95);
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(31,111,235,0.12);
}

h1{
    margin: 14px 0 10px;
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.lead{
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.45;
    max-width: 48ch;
}

.hero__actions{
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero__meta{
    display:flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.metaItem{
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 10px 12px;
    box-shadow: var(--shadow2);
}
.metaItem__label{
    font-weight: 900;
    font-size: 12px;
    color: rgba(0,0,0,0.60);
    margin-bottom: 2px;
}
.metaItem__value{
    font-weight: 800;
    font-size: 13px;
    color: rgba(0,0,0,0.78);
}

/* Hero visual */
.hero__visual{
    position: relative;
    display:flex;
    justify-content: center;
    align-items:center;
    min-height: 420px;
}

.phone{
    position: relative;
    width: 320px;
    height: 420px;
    border-radius: 44px;
    background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.30));
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: var(--shadow);
    overflow:hidden;
}
.phone__shine{
    position:absolute;
    inset:-40px -80px auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.65), transparent 70%);
    transform: rotate(20deg);
}
.phone__frame{
    position:absolute;
    inset: 12px;
    border-radius: 34px;
    background: rgba(0,0,0,0.06);
    padding: 10px;

    /* Viktigt: låt innehållet fylla hela ramen */
    width: auto;
    height: auto;
}
.phone__screen{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 26px;

    /* Riktig screenshot ska inte ha vit gradient bakom */
    background: #0b0f17;
    border: 0;

    overflow: hidden;
}
.phone__screenImg{
    width: 100%;
    height: 100%;
    display: block;

    /* Visa hela skärmdumpen (ingen beskärning) */
    object-fit: contain;
    object-position: center;

    transform: none;
    border-radius: 26px;
}

.hero__floating{
    position:absolute;
    left: -10px;
    bottom: 20px;
    display:flex;
    flex-direction: column;
    gap: 10px;
}

.floatingCard{
    display:flex;
    align-items:center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(0,0,0,0.78);
    color: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 26px rgba(0,0,0,0.14);
    width: 260px;
}
.floatingCard--alt{ background: rgba(31,111,235,0.78); }

.floatingCard__icon{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(255,255,255,0.16);
}
.floatingCard__title{ font-weight: 900; letter-spacing: -0.01em; }
.floatingCard__subtitle{ font-weight: 700; font-size: 13px; opacity: 0.92; }

.trust{
    padding: 18px 0 6px;
}
.trust__inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.trust__label{
    color: rgba(0,0,0,0.58);
    font-weight: 800;
    font-size: 13px;
}
.trust__chips{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
}
.chip{
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.06);
    font-weight: 800;
    font-size: 13px;
    color: rgba(0,0,0,0.72);
}

/* Sections */
.section{
    padding: 54px 0;
}
.section--alt{
    background: rgba(255,255,255,0.25);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.sectionHead{
    margin-bottom: 18px;
}
.sectionHead h2{
    font-size: 30px;
    letter-spacing: -0.03em;
    margin: 0 0 6px;
}
.sectionHead p{
    margin:0;
    color: var(--muted);
    font-weight: 650;
}

/* Steps */
.steps{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px;
}
.stepCard{
    background: var(--card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow2);
}
.stepCard__num{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(31,111,235,0.14);
    border: 1px solid rgba(31,111,235,0.18);
    font-weight: 900;
    color: rgba(31,111,235,0.95);
    margin-bottom: 10px;
}
.stepCard h3{
    margin:0 0 6px;
    letter-spacing: -0.02em;
}
.stepCard p{
    margin:0;
    color: rgba(0,0,0,0.62);
    font-weight: 650;
    line-height: 1.45;
}
/* Carousel */
.carousel{
    position: relative;
    margin-top: 18px;
    border-radius: var(--radius-xl);
    overflow:hidden;
    background: rgba(255,255,255,0.40);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow2);
}
.carousel__track{
    display:flex;
    gap: 14px;
    padding: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}
.carousel__track img{
    height: 520px;
    width: auto;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    scroll-snap-align: center;
}
.carousel__btn{
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 28px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index: 2;
}
#prevBtn{ left: 10px; }
#nextBtn{ right: 10px; }
.carousel__btn:hover{ background: rgba(0,0,0,0.65); }

/* Screens grid */
.screensGrid{
    margin-top: 16px;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.screensGrid__item{
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow2);
}
.screensGrid__item img{
    width: 100%;
    height: auto;
    display:block;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
}

/* Features */
.featureGrid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.featureCard{
    background: var(--card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow2);
}
.featureCard h3{ margin: 0 0 6px; letter-spacing: -0.02em; }
.featureCard p{
    margin:0;
    color: rgba(0,0,0,0.62);
    font-weight: 650;
    line-height: 1.45;
}

/* Pricing */
.pricing{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}
.pricingCard{
    background: var(--card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-xl);
    padding: 18px;
    box-shadow: var(--shadow2);
}
.pricingCard--highlight{
    background: linear-gradient(180deg, rgba(31,111,235,0.12), rgba(255,255,255,0.65));
    border-color: rgba(31,111,235,0.20);
}
.pricingCard__badge{
    display:inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.07);
    color: rgba(0,0,0,0.72);
    margin-bottom: 10px;
}
.pricingCard--highlight .pricingCard__badge{
    background: rgba(31,111,235,0.14);
    border-color: rgba(31,111,235,0.18);
    color: rgba(31,111,235,0.95);
}
.pricingCard h3{ margin: 0 0 8px; letter-spacing: -0.02em; }
.pricingCard ul{
    margin: 0 0 12px;
    padding-left: 18px;
    color: rgba(0,0,0,0.66);
    font-weight: 650;
    line-height: 1.55;
}
.pricingCard__price{
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.fineprint{
    margin-top: 10px;
    color: rgba(0,0,0,0.56);
    font-weight: 650;
    font-size: 12px;
}

/* FAQ */
.faq{
    display:grid;
    gap: 10px;
    margin-top: 16px;
}
.faqItem{
    background: var(--card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    box-shadow: var(--shadow2);
}
.faqItem summary{
    cursor:pointer;
    font-weight: 900;
    letter-spacing: -0.01em;
}
.faqItem p{
    margin: 10px 0 0;
    color: rgba(0,0,0,0.64);
    font-weight: 650;
    line-height: 1.55;
}


.ctaBand{
    margin-top: 18px;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: rgba(0,0,0,0.78);
    color: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.ctaBand h3{ margin: 0 0 2px; }
.ctaBand p{ margin:0; opacity: 0.92; font-weight: 650; }

/* Footer */
.footer{
    padding: 26px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.footer__inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
}
.footer__left{
    display:flex;
    align-items:center;
    gap: 10px;
}
.footer__logo{
    width: 32px;
    height: 32px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.06);
}
.footer__name{ font-weight: 900; }
.footer__small{ color: rgba(0,0,0,0.56); font-weight: 650; font-size: 13px; }
.footer__links{
    display:flex;
    gap: 14px;
}
.footer__links a{
    color: rgba(0,0,0,0.66);
    text-decoration:none;
    font-weight: 800;
}
.footer__links a:hover{ color: rgba(0,0,0,0.86); }

/* Responsive */
@media (max-width: 980px){
    .hero__grid{ grid-template-columns: 1fr; }
    .hero__visual{ min-height: 360px; }
    h1{ font-size: 40px; }
    .featureGrid{ grid-template-columns: repeat(2, 1fr); }
    .steps{ grid-template-columns: 1fr; }
    .pricing{ grid-template-columns: 1fr; }
    .screensGrid{ grid-template-columns: repeat(2, 1fr); }
    .nav{ display:none; }
    .topbar__cta{ display:none; }
    .hamburger{ display:block; }
    .hero__floating{ left: 0; }
}

@media (max-width: 520px){
    .container{ width: calc(100% - 28px); }
    h1{ font-size: 34px; }
    .carousel__track img{ height: 420px; }
    .phone{ width: 290px; height: 395px; }
}