:root{
  --bg: #f9f9f9;
  --text: #333333;
  --muted: #667085;

  /* Mellav (from your project CSS) */
  --primary: #2A9D8F;
  --deep: #264653;

  --card: #ffffff;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.10);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

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

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.topbar__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

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

.brand__logo{
  height: 34px;
  width: auto;
  display: block;
}

.brand__name{
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav{
  display:none;
  gap: 18px;
  opacity: 0.95;
  font-weight: 600;
}

@media (min-width: 760px){
  .nav{ display:flex; }
}

.hero{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 450px at 20% 10%, rgba(42,157,143,0.18), transparent 60%),
    radial-gradient(900px 520px at 90% 30%, rgba(38,70,83,0.20), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
  border-bottom: 1px solid var(--border);
}

.hero__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 18px 36px;
  display:grid;
  gap: 28px;
}

@media (min-width: 900px){
  .hero__inner{
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 64px 18px 54px;
  }
}

h1{
  margin: 0 0 12px;
  font-size: 2.15rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

@media (min-width: 900px){
  h1{ font-size: 3rem; }
}

.lead{
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3b4a54;
  max-width: 44ch;
}

.cta{
  display:flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
}

@media (min-width: 520px){
  .cta{ flex-direction: row; align-items:center; flex-wrap: wrap; }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  white-space: nowrap;
}

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

.btn--primary{
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover{
  background: #218b7f;
  text-decoration:none;
}

.btn--secondary{
  background: #fff;
  color: var(--primary);
  border-color: rgba(42,157,143,0.55);
}

.btn--secondary:hover{
  background: rgba(42,157,143,0.08);
  text-decoration:none;
}

.cta__hint{
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex-basis: 100%;
}

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

.pill{
  background: rgba(38,70,83,0.08);
  border: 1px solid rgba(38,70,83,0.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #1f2f38;
}

.hero__art{
  position: relative;
  display:flex;
  justify-content: center;
  padding: 12px 0 24px;
}

.phone{
  width: min(360px, 86vw);
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  background: #0e1f26;
  padding: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.10);
  position: relative;
}

.phone__screen{
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(42,157,143,0.18), rgba(255,255,255,0.04));
  display:flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.10);
}

.mini-card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 14px 14px;
  color: #fff;
}

.mini-card__title{
  font-weight: 900;
  opacity: 0.95;
  margin-bottom: 8px;
}

.mini-card__row{
  display:flex;
  align-items:center;
  gap: 10px;
  opacity: 0.92;
  font-weight: 650;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(42,157,143,0.22);
}

.dot--alt{
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.16);
}

.glow{
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(60px);
  background: radial-gradient(circle at 30% 30%, rgba(42,157,143,0.34), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(38,70,83,0.34), transparent 55%);
  z-index: -1;
  opacity: 0.85;
}

.section{
  padding: 54px 18px;
}

.section--alt{
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.container{
  max-width: 1100px;
  margin: 0 auto;
}

h2{
  margin: 0 0 10px;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
}

.muted{
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 65ch;
}

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

@media (min-width: 760px){
  .grid{ grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.card h3{
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 1.1rem;
}

.card p{
  margin: 0;
  color: #3d4c55;
  line-height: 1.55;
}

.contact{
  display:flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--deep);
  font-weight: 650;
}

.fineprint{
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}