
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f6fa;
  color: #111;
}

/* TOPBAR */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: white;
  border-bottom: 1px solid #eee;
}

.topbar-left img {
  height: 32px;
  width: auto;
}

/* LINKS */
a {
  color: #2563eb;
  text-decoration: none;
}

/* START CARDS */
.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 20px;
}

.start-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #eee;
}

/* FOOTER */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* =========================
   VERIXO DESIGN SYSTEM CORE
   ========================= */

:root {
  --bg: #f5f6fa;
  --card: #ffffff;
  --border: #eaeaea;
  --text: #111;
  --muted: #666;
  --radius: 12px;
}

/* GLOBAL RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* =========================
   LAYOUT WRAPPER (VIKTIG)
   ========================= */

.page {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   CARDS (GLOBAL STANDARD)
   ========================= */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px;
}

/* GRID SYSTEM */
.grid {
  display: grid;
  gap: 15px;
}

/* =========================
   TOPBAR LOCK (fix logo + spacing)
   ========================= */

.topbar-left img {
  height: 32px;
  width: auto;
}

/* =========================
   TYPO HELPERS
   ========================= */

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

.start-container {
  padding: 40px;
}

.start-hero {
  text-align: center;
  margin-bottom: 30px;
}

.start-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.start-hero p {
  color: #666;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.start-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-decoration: none;
  color: inherit;
}

.start-card:hover {
  transform: translateY(-2px);
  transition: 0.2s;
}

.start-card h3 {
  margin-top: 0;
}

.primary {
  border: 1px solid #2563eb;
}

/* START - VERIXO ORIGINAL FEEL */

.start-container {
  padding: 50px 30px;
}

.start-hero {
  text-align: center;
  margin-bottom: 40px;
}

.start-hero h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.start-hero p {
  color: #555;
  font-size: 16px;
}

.start-status {
  margin-top: 12px;
  font-size: 13px;
  color: #777;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.start-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #eee;
  text-decoration: none;
  color: #111;
  transition: 0.2s ease;
}

.start-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.start-card h3 {
  margin: 0 0 8px 0;
}

.start-card p {
  color: #666;
  font-size: 13px;
}

.primary {
  border: 1px solid #2563eb;
}

/* ===== VERIXO CLEAN SAAS FEEL ===== */

.hero {
  text-align: center;
  padding: 70px 20px 30px;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.status {
  margin-top: 12px;
  font-size: 13px;
  color: #888;
}

/* ACTIONS */

.actions {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.action {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
}

.action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.icon {
  font-size: 24px;
}

/* ===== FOOTER FIX (viktig del av känslan) ===== */

.footer {
  margin-top: 80px;
  padding: 25px;
  text-align: center;
  font-size: 12px;
  color: #999;
  border-top: 1px solid #eee;
  background: transparent;
}

/* === Restore Verixo original feel === */

/* Tjänster bredvid varandra */
.actions{
  max-width:1000px;
  margin:40px auto;
  display:grid !important;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

/* Kort lite mindre */
.action{
  min-height:110px;
  padding:16px 18px;
}

/* Avlång footer som förr */
.footer{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  font-size:12px;
  color:#888;
  border-top:1px solid #e5e5e5;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(8px);
  z-index:10;
}

/* Stor subtil V i bakgrunden */
body::before{
  content:"P";
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:900px;
  font-weight:700;
  color:rgba(0,0,0,0.03);
  pointer-events:none;
  z-index:-1;
}

/* så innehåll inte hamnar bakom footern */
main{
  padding-bottom:70px;
}

@media(max-width:900px){
  .actions{
    grid-template-columns:1fr;
  }
}


/* ABOUT PAGE */
.about-page{
  max-width:1000px;
}

.about-hero{
  text-align:center;
  margin-top:30px;
  margin-bottom:18px;
}

.about-hero h1{
  font-size:42px;
  margin-bottom:8px;
}

.about-hero p{
  color:#555;
  font-size:16px;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:16px;
}

.about-pricing h2{
  margin-top:0;
}

.price-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
  border-top:1px solid #eee;
}

.price-row strong{
  white-space:nowrap;
}

.price-row.pro strong{
  color:#2563eb;
}

@media(max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
  }
}
