@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}
:root {
  --primary-color: #6366F1; 

  --color-body-text: #565973;
  --color-body-bg: #fff;
  --color-heading-text: #0B0F19;

  --color-button-text:#ffffff;
  --color-button-bg: var(--primary-color);
  --color-button-bg-hover: #4F46E5;

  --container-max: 1320px; 
  --container-pad: 16px;   
  --content-max: 1320px;    
}

body {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  color: var(--color-body-text);
  background-color: var(--color-body-bg);
;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-heading-text);
  line-height: 1.25;
  margin: 0;
  font-family: "Manrope", sans-serif;

}

button, .btn{
  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: var(--color-button-text);
  background-color: var(--color-button-bg);
  padding: 10px 20px; 
  border-radius: 4px;
  text-decoration: none;

  &:hover {
    background-color: #4F46E5; 
  }
}


.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header-area{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 1rem 0;
}

.actions{
  display:flex;            
  align-items:center;
  gap:16px;
  
}

.actions .link,
.actions .btn{
  display:inline-flex;     
  align-items:center;
  text-decoration: none;

}



/* ------------------  hero sektion  ------------------ */

.hero{
  background: #FFFFFF;
  background: linear-gradient(
    178deg,
    rgba(255,255,255,0.07) 0%,
    rgba(218,70,239,0.05) 42%,
    rgba(99,102,241,0.07) 83%
  );
  padding: 5rem 0 0; /* topp/sidor/botten */
}

.hero-area{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 3rem;
  align-items: center;
  
}

.hero-content{
  min-width: 0; 
  margin-top: 2rem;
  padding:2rem
}

.hero-image{ min-width: 0; }

.hero-image img{
  max-width: 100%;
  
}
.hero-title{
  font-size: 56px;
  font-weight: 800;
}
.hero-ingress{
  font-size: 18px;
  font-weight: 400;
 
}


.brands{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

/* mer vertikal luft i sektionen */
.features-section {
  padding-block: clamp(56px, 8vw, 96px);
}

/* GÖR WRAPPERN TILL GRID och öka kolumngapet rejält */
.features-wrapper {
  display: grid;
  grid-template-columns: minmax(320px, 480px) minmax(540px, 1fr); /* vänster | höger */
  column-gap: clamp(48px, 8vw, 160px);  /* LUFT mellan iPhone och text/kort */
  row-gap: 40px;
  align-items: start;
}

.features-left,
.features-right { min-width: 0; }

/* rubrik + ingress med mer luft och läsbar radlängd */
.features-title {
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 1rem;
}

.features-lead {
  max-width: 64ch;              /* skön radlängd */
  margin: 0 0 32px 0;           /* mer luft före griden */
  line-height: 1.7;
}

.features-grid--about {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  column-gap: clamp(28px, 4vw, 48px);   
  row-gap: clamp(18px, 3vw, 28px);    
}

/* kortens ikon+text – ge texten fler pixlar och större mellanrum från ikon */
.feature-item {
  display: grid;
  grid-template-columns: 36px 1fr;      /* ikon | text */
  column-gap: 50px;                     /* öka vid behov 24px */
  align-items: start;
}

.feature-icon { 
  width: 60px; 
  height: 60px; 
  display:block;
 }
.feature-text { 
  font-size: 16px;
}
.feature-text h3 { 
  margin: 0 0 6px 0; 
  font-size: 18px;
 }
.feature-text p  { 
  margin: 0; 
  line-height: 1.65;
 }

/* ------------------ SLIDE (IPHONE) ------------------ */

/* Låt slide använda samma container som alla andra */
.slide .container {
  max-width: var(--container-max);
  padding-inline: var(--container-pad);
}

.slide {
  background-color: #F3F6FF;
}
.slide-group {
  display: grid;
}

.slide-group .HDIW { 
  justify-self: center; 
  margin-bottom: 35px; 
  margin-top: 40px;
  font-size: 40px;
  font-weight: 700;
}
.slide-group .HDIW h2 { 
  margin: 0; 
  text-align: center; 
}

.Iphone-icons {
  display: flex;
  justify-content: center;  
  gap: 72px;                    /* ditt luftigare avstånd */
}

.slide-group .img-caption {
  justify-self: center;         /* centrera blocket mot telefonerna */
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  max-width: 640px;             /* läsbar radlängd */
}





/* ------------------ APP FEATURES ------------------ */
.app-features { padding: 80px 0; }

.features-grid--app {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}


.feature-text h2,
.feature-text2 h2 {
  font-size: 32px;
  font-weight: 800;
  max-width: 416px;
  max-height: 84px;
  margin-bottom: 20px;
  display: block;
}
.feature-text2 .btn {
  display: inline-block;
  width: auto;                    /* neutralisera ev. width:100% */
  margin-top: 12px;               /* lite luft under listan */
}

/* ------------------ CHECKLIST ------------------ */
/* Sätter in ✔ framför listan via ::before */
.checklist-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.checklist-checks li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #565973;
  line-height: 1.6;
}

.checklist-checks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #DA46EF);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-icons {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.checklist-icons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

/* ---- App-features högerkolumn: lista + knapp ---- */

/* Listan: två kolumner, inga extra indrag */
.checklist-right {
  list-style: none;
  padding: 0;                  /* ingen vänsterpadding */
  margin: 16px 0 0;            /* bara lite toppmarginal */
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  column-gap: 40px;
  row-gap: 24px;
}

.checklist-right li {
  display: flex;
  flex-direction: column;      /* ikon ovanför text */
  align-items: flex-start;
  gap: 10px;
  margin: 0;                   /* ← TA BORT din margin: 20px 20px */
  max-width: none;             /* ← TA BORT max-width: 243px */
  max-height: none;            /* ← TA BORT max-height: 78px */
}

.checklist-right li > img {
  display: block;
  width: 60px;
  height: 60px;
}

/* App-features: gör vänster knapp smal (inte 100% bredd) */
.feature-text .btn {
  display: inline-flex;   /* inte block */
  width: auto;
  max-width: none;
  justify-self: start;    /* om föräldern blir grid någon gång */
  align-self: start;
  margin-top: 12px;
}

/* Knappen: naturlig bredd, egen rad under listan */
.feature-text2 .btn {
  display: inline-block;
  width: auto;
  margin-top: 12px;
}




/* ------------------ TESTIMONIALS ------------------ */
.testimonials {
  background: #F3F6FF;
  padding: 60px;
 
}

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

.testimonials-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.testimonials-left {
  flex: 0 0 35%;
}

.testimonials-left h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.testimonials-right {
  flex: 1;
}

.t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.t-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06);
}

.quote-badge {
  position: absolute;
  left: 16px;
  top: -12px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6366F1, #DA46EF);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 4px;
  margin: 4px 0 10px;
}

.star {
  font-size: 14px;
  color: #e5e7eb;
}

.star.full {
  color: #F59E0B;
}

.t-card p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
}

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

.t-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.t-user strong {
  display: block;
  font-size: 14px;
  color: #0B0F19;
}

.t-user span {
  display: block;
  font-size: 12px;
  color: #6B7280;
}


/* ------------------ FAQ (ACCORDION) ------------------ */
.faqs {
  background: #fff;
  padding: 80px 0;
  margin-bottom: 40px;
}


.faqs-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px 64px;
  align-items: start;
}

.faqs-left h2 {
  margin: 0 0 12px 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.faqs-lead {
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #F8FAFF;
  color: #0B0F19;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
}

.contact-card:hover {
  background: #F3F6FF;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.12);
  color: #6366F1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-text strong {
  display: block;
  font-size: 14px;
  color: #0B0F19;
}

.contact-text span {
  display: block;
  font-size: 13px;
  color: #6366F1;
}

.accordion {
  display: grid;
  gap: 12px;
}

.acc-item {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.acc-summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 48px 18px 18px;
  font-size: 16px;
  font-weight: 600;
  color: #0B0F19;
  outline: none;
}

.acc-summary::-webkit-details-marker {
  display: none;
}

.acc-summary::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 150ms ease;
  color: #6366F1;
  font-size: 18px;
}

.acc-item[open] .acc-summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.acc-panel {
  padding: 0 18px 18px 18px;
  color: #565973;
  font-size: 15px;
  line-height: 1.65;
  background: #fff;
  border-top: 1px solid #E5E7EB;
}

.acc-item[open] {
  background: #F8F7FF;
  border-color: #E0E7FF;
}


/* ------------------ NEWSLETTER ------------------ */
/* Input och knapp ligger bredvid varandra i flex för enkel formulärlayout */
.newsletter {
  background: #fff;
}



.newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #F3F6FF;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
  max-width: 1296px;
  max-height: 222px;
  margin: 0 auto;
}

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

.nl-bell {
  width: 78px;
  height: 78px;
  display: block;
  margin: 10px}

.nl-text  {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
  max-width: 416px;
  color: #0B0F19;
}

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

.nl-input {
  width: 260px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  color: #0B0F19;
  font-size: 14px;
  outline: none;
}

.nl-input::placeholder {
  color: #9CA3AF;
}

.nl-input:focus {
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}




/* ------------------ FOOTER ------------------ */
footer {
  background: #f9f9f9;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer p {
  margin: 0;
  font-size: 14px;
  color: #565973;
}
