    /* Alap: dark mode */
  :root{
    --bg:#0f1724;
    --bg-soft:#111c2b;
    --panel:#162131;
    --panel-2:#1a2638;
    --text:#e8eef6;
    --muted:#b5c3d3;
    --brand:#63d3ff;
    --brand-2:#7ef6d7;
    --accent:#ffd166;
    --red:#ff6b6b;
    --shadow: 0 12px 32px rgba(0,0,0,.28);
    --radius: 18px;
    --radius-lg: 26px;
    --container: 1100px;
    --input-bg:#101926;
    --line:rgba(255,255,255,.08);
    --line-soft:rgba(255,255,255,.06);
  }
	
	/* Light mode */
	:root.light {
		--bg: #f5f7fa;
		--panel: #ffffff;
		--text: #1c1c1c;
		--muted: #5a6a7a;
		--brand: #0077ff;
		--brand-2: #00d4b7;
		--accent: #ff8800;
		--red: #e63946;
		--shadow: 0 10px 30px rgba(0,0,0,.35);
		--radius: 18px;
		--radius-lg: 26px;
		--container: 1100px;
		--input-bg: #ffffff;
	}
		.theme-toggle {
	  margin-left: 15px;
	  padding: 8px 12px;
	  border-radius: 50%;
	  border: none;
	  background: var(--panel);
	  color: var(--text);
	  font-size: 18px;
	  cursor: pointer;
	  transition: background 0.3s, transform 0.2s;
	}
	.theme-toggle:hover {
	  background: rgba(255,255,255,0.1);
	  transform: scale(1.1);
	}

	/* Mobilon ne tolja el a menüt */
	@media (max-width: 640px) {
	  .theme-toggle {
		margin-left: auto;  /* a jobb szélre tolja */
	  }
	}

		.lang-switch {
	  display: flex;
	  gap: 6px;
	  margin-left: 12px;
	}
	.lang-switch a {
	  display: inline-block;
	  padding: 6px 10px;
	  border-radius: 8px;
	  background: var(--panel);
	  color: var(--text);
	  font-size: 14px;
	  text-decoration: none;
	  transition: background 0.3s, transform 0.2s;
	}
	.lang-switch a:hover {
	  background: rgba(255,255,255,0.1);
	  transform: scale(1.05);
	}
	.lang-switch a.active {
	  background: var(--brand);
	  color: #001019;
	  font-weight: 600;
	  cursor: default;
	  pointer-events: none; /* ne lehessen kattintani */
	}

  *{box-sizing:border-box}
  html{
    scroll-behavior:smooth;
    background: #0d1622;
  }

  body{
    margin:0;
    background:
      radial-gradient(1200px 650px at 100% -10%, rgba(99,211,255,0.10), transparent 60%),
      radial-gradient(900px 550px at -10% 10%, rgba(126,246,215,0.08), transparent 60%),
      linear-gradient(180deg, #101927 0%, #0d1622 100%);
    color:var(--text);
    font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
    line-height:1.6;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }


    a{color:inherit; text-decoration:none}
    img{max-width:100%; display:block}
    .container{max-width:var(--container); margin:0 auto; padding:0 20px}
    /* ---------------- NAV ---------------- */

    header{
      position:sticky;
      top:0;
      z-index:20;
      backdrop-filter:saturate(140%) blur(12px);
      background:rgba(12,18,28,.72);
      border-bottom:1px solid var(--line-soft);
    }

    .nav{display:flex; align-items:center; justify-content:space-between; height:64px}
    .nav-cta{
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
      font-size: 11px;
      color: #07111d !important;
      background: linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:
        0 0 0 1px rgba(255,255,255,.06) inset,
        0 8px 24px rgba(90,200,250,.28);
      transition: all .25s ease;
    }
    .nav-cta:hover{
      background: linear-gradient(135deg,var(--brand),var(--brand-2)) !important;
      color: #07111d !important;
      transform: translateY(-2px) scale(1.02);
      box-shadow:
        0 0 0 1px rgba(255,255,255,.08) inset,
        0 12px 30px rgba(126,246,215,.35);
    }
    .brand{display:flex; align-items:center; gap:10px; font-weight:700}
    .logo{width:34px; height:34px; background:linear-gradient(135deg,var(--brand),var(--brand-2)); border-radius:10px; display:inline-grid; place-items:center; box-shadow:var(--shadow)}
    .logo span{font-family:Montserrat,Inter,sans-serif; color:#001019; font-weight:800}
    nav ul{display:flex; gap:20px; list-style:none; padding:0; margin:0}
    .nav a{border-radius:999px; padding:8px 14px; color:var(--muted)}
    .nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}
    .mobile-toggle{display:none; border:1px solid rgba(255,255,255,.12); background:transparent; color:var(--text); padding:8px 12px; border-radius:10px}
    /* ---------------- HERO ---------------- */
    .hero{padding:90px 0 40px}
    .hero-inner{display:grid; grid-template-columns:1.15fr 0.85fr; gap:36px; align-items:center}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--brand);
      font-weight:600;
      background:rgba(99,211,255,.12);
      border:1px solid rgba(99,211,255,.24);
      padding:6px 12px;
      border-radius:999px;
    }
    h1{font-family:Montserrat,Inter,sans-serif; font-size:clamp(34px, 6vw, 54px); line-height:1.08; margin:16px 0; letter-spacing:0.2px}
    .lead{
      color:var(--muted);
      font-size:1.08rem;
    }
    .cta{display:flex; gap:12px; margin-top:22px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      gap:10px;
      padding:12px 18px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      color:var(--text);
      font-weight:600;
      cursor:pointer;
      transition:.2s transform, .2s background, .2s border-color;
    }
    .btn:hover{
      transform:translateY(-2px);
      border-color: rgba(99,211,255,.28);
    }
    .btn.primary{
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      color:#07222a;
      border:none;
    }
    .stats{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:24px}

    .stat{
      background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
      border:1px solid var(--line);
      padding:14px;
      border-radius:14px;
      text-align:center;
    }

    .stat strong{display:block; font-size:1.2rem}
	
    .hero-card{
      background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
      border:1px solid rgba(255,255,255,.09);
      border-radius:var(--radius-lg);
      padding:20px;
      box-shadow:var(--shadow);
      margin-top:-50px;
    }
	
    .hero-card .grid{display:grid; gap:10px}
    .hero-tag{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; background:rgba(255,209,102,.12); border:1px solid rgba(255,209,102,.3); color:var(--accent); font-weight:600; width:max-content}
    /* ---------------- SECTIONS ---------------- */
    section{
		padding:50px 0;
		}
	
	.skills-section {
	  max-width: 1100px;
	  margin: 0 auto;
	  padding: 60px 20px;
	}

	.skills-header {
	  display: flex;
	  justify-content: space-between;
	  align-items: baseline;
	  margin-bottom: 30px;
	}

	.skills-header h2 {
	  font-size: 1.8rem;
	  font-weight: 700;
	}

	.skills-subtitle {
	  color: #9ca3af;
	  font-size: 0.9rem;
	}

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

	.skills-column h3 {
	  font-size: 1.2rem;
	  margin-bottom: 20px;
	  color: #e5e7eb;
	}

	.skill-card {
	  background-color: #0f172a;
	  border: 1px solid #1e293b;
	  border-radius: 10px;
	  padding: 12px 16px;
	  margin-bottom: 10px;
	  display: flex;
	  align-items: center;
	  font-size: 0.95rem;
	  color: #d1d5db;
	  transition: all 0.3s ease;
	}

	.skill-card:hover {
    border-color: rgba(99,211,255,.45);
    background: rgba(255,255,255,.03);
    transform: translateY(-2px);
  }

	.skill-card .dot {
	  width: 8px;
	  height: 8px;
	  background-color: #2ab0ff;
	  border-radius: 50%;
	  margin-right: 10px;
	}

	.skill-card strong {
	  color: #fff;
	  margin-right: 5px;
	}

	.kicker{color:var(--muted)}
    .cards{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
	  .card{
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:18px;
      box-shadow:var(--shadow);
    }
    .card h3{margin:8px 0 6px}
    .muted{color:var(--muted)}
    /* About grid */
    .about{display:grid; grid-template-columns:1fr 1fr; gap:18px}
    .timeline{display:grid; gap:12px}
    .tl-item{padding:14px; border:1px dashed rgba(255,255,255,.12); border-radius:14px}
    /* Skills grid */
    .skills{display:grid; grid-template-columns:repeat(4,1fr); gap:12px}
    .skill{padding:12px; border-radius:12px; border:1px solid rgba(255,255,255,.08); background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)); display:flex; align-items:center; gap:10px}
    .dot{width:10px; height:10px; border-radius:50%; background:var(--brand)}
    /* Projects */
    .projects{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
    .project{border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.03)}
    .project .meta{padding:12px 14px}
    .project .tags{display:flex; flex-wrap:wrap; gap:6px; margin-top:6px}
    .tag{font-size:.8rem; color:var(--brand); background:rgba(90,200,250,.08); border:1px solid rgba(90,200,250,.22); padding:4px 8px; border-radius:999px}
    .project img{aspect-ratio: 16/10; object-fit:cover; width:100%}
    /* Contact */
    form{display:grid; gap:12px}
    input, textarea{width:100%; padding:12px 14px; border-radius:12px; border:1px solid rgba(255,255,255,.14); background: var(--input-bg); color:var(--text)}
    input::placeholder, textarea::placeholder{color:#6f7f92}
    .form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    .form-note{color:var(--muted); font-size:.9rem}
    .error{color:var(--red); font-size:.92rem; display:none}
	
.hero-logo {
  width: 600px;
  max-width: 100%;
  margin-bottom: -120px;
  animation: fadeInUp 1s ease;
  filter: drop-shadow(0 0 3px #00cfff);
  margin-top: -200px;
  animation: slideFromTop 2s ease-out;
  opacity: 1;
}
@keyframes slideFromTop {
	0% {
		transform: translateY(-50px);
		opacity: 0;
		}
	100% {
		transform: translateY(0);
		opacity: 1;
		}
	}
	
	/* ---------------- KIEMELT TERMÉK JESZOSLOT ---------------- */
.jeszoslot-section {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.jeszoslot-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.jeszoslot-wrapper {
  background-color: rgba(255,255,255,.03);
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  align-items: center;
}

.jeszoslot-wrapper:hover {
  border-color: rgba(99,211,255,.38);
  background-color: rgba(255,255,255,.03);
  transform: scale(1.01);
}

.jeszoslot-logo img {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

.dabasquattro-logo img {
  max-width: 250px;
  height: auto;
  margin: 30px;
  border-radius: 20px;
}

.jeszoslot-info {
  flex: 1 1 500px;
}

.jeszoslot-info h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.jeszoslot-info p {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 15px;
}

.jeszoslot-info ul {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #d1d5db;
}

.jeszoslot-info li {
  margin-bottom: 8px;
}

.tech-tags span {
  display: inline-block;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: #d1d5db;
  margin: 5px 5px 0 0;
}

.click-hint {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 20px;
  font-style: italic;
}

/*Görgetésre megjelnik*/
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
/*Görgetésre megjelnik*/
.scroll-fade2 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.scroll-fade2.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- POWERED BY, FOOTER ---------------- */
footer {
  text-align: center;
  padding: 32px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    #111a28;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content p {
  margin: 5px 0;
  color: #b8c4d3;
  font-size: 0.95rem;
}

.footer-content a {
  color: #c7d4e3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-content a:hover {
  color: var(--brand);
}

.powered-by {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.powered-by img {
  max-width: 90px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  background: transparent;
}

.powered-by img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .powered-by img {
    max-width: 70px;
  }
}

/* OVERLAY */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: none;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);

  z-index: 9999;
}

/* MODAL BOX */
.modal-box {
  background: #0f172a;
  padding: 30px;
  border-radius: 16px;

  width: 300px;
  max-width: 90%;

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);

  text-align: center;
}

/* INPUT */
.modal-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;

  border-radius: 10px;
  border: none;

  background: #020617;
  color: white;
}

/* BUTTON */
.modal-box button {
  margin-top: 10px;
  padding: 12px;
  width: 100%;

  border: none;
  border-radius: 10px;

  background: linear-gradient(135deg, #38bdf8, #22c55e);
  color: white;
  font-weight: bold;

  cursor: pointer;
}

/* JeszoCode 2.0 Hero kép szekció */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 550px;
  min-height: 370px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-showcase-main {
  width: 100%;
  max-width: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 40px rgba(99,211,255,.14);
  backdrop-filter: blur(12px);
}

.hero-showcase-main img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-showcase-mobile {
  position: absolute;
  left: -30px;
  bottom: 10px;
  width: 180px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 30px rgba(99,211,255,.16);
  background: #132033;
}

.hero-showcase-mobile img {
  width: 100%;
  display: block;
}

.hero-showcase-badge {
  position: absolute;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(18, 30, 46, 0.88);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(99,211,255,.10);
  backdrop-filter: blur(10px);
}

.badge-top {
  top: -10px;
  right: -20px;
}

.badge-bottom {
  bottom: 20px;
  right: -30px;
}

.project-outcome{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--brand);
  background: rgba(90,200,250,.06);
  border: 1px solid rgba(90,200,250,.12);
}

/* ---------------- MOBILE HAMBURGER ---------------- */
.mobile-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  cursor:pointer;
  padding:0;
  position:relative;
}

.mobile-toggle span{
  position:absolute;
  left:12px;
  width:24px;
  height:2px;
  background:var(--text);
  border-radius:4px;
  transition:all .25s ease;
}

.mobile-toggle span:nth-child(1){ top:15px; }
.mobile-toggle span:nth-child(2){ top:23px; }
.mobile-toggle span:nth-child(3){ top:31px; }

.mobile-toggle[aria-expanded="true"] span:nth-child(1){
  transform:rotate(45deg);
  top:23px;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3){
  transform:rotate(-45deg);
  top:23px;
}

/* MOBILE MENU PANEL */
.mobile-menu{
  position: fixed;
  top: 78px;
  right: 20px;
  width: min(320px, calc(100vw - 40px));
  background: rgba(10,14,22,.96);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  z-index: 999;
  animation: mobileMenuFade .25s ease;
}

.mobile-menu-inner{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:24px;
}

.mobile-menu-inner a{
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 4px 0;
}

.mobile-cta{
  margin-top: 8px;
  text-align: center;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#07111d !important;
  font-weight:700;
  font-size:1.05rem;
}

.mobile-lang-switch{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.mobile-lang-switch a{
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.mobile-lang-switch a.active{
  background:var(--brand);
  color:#001019;
}

@keyframes mobileMenuFade{
  from{
    opacity:0;
    transform:translateY(-10px) scale(.96);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* ===== PROJECT RESPONSIVE SWITCH ===== */

.project-desktop {
  display: block;
}

.project-mobile {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
/*Jeszoslot*/
  .project-desktop {
    display: none;
  }

  .project-mobile {
    display: block;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
  }

  .mobile-logo {
    max-width: 140px;
    margin: 0 auto 10px;
  }
  .mobile-logo2 {
    max-width: 140px;
    margin: 0 auto 10px;
    border-radius: 10px;
  }

  .project-mobile h3 {
    font-size: 1.3rem;
  }

  .mobile-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
  }

  .mobile-features li {
    margin: 6px 0;
    font-size: 0.95rem;
  }

  .btn.small {
    padding: 10px;
    font-size: 0.9rem;
    margin-top: 10px;
  }
}

/*Facebook ikon-------------*/
/* CONTACT CARD */
.contact-card {
    position: relative;
}

/* LIST */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

/* ITEM */
.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
    transition: all 0.2s ease;
}

.contact-item:hover {
    border-color: rgba(99,211,255,.35);
    background: rgba(255,255,255,.04);
}

/* LEFT SIDE */
.contact-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON */
.contact-icon {
    font-size: 16px;
    opacity: 0.8;
}

/* LINKS */
.contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--brand);
}

/* FACEBOOK RIGHT SIDE */
.contact-social img {
    width: 42px;
    height: 42px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

/* HOVER EFFECT */
.contact-social:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(99,211,255,.6));
}

/* HIGHLIGHT ROW */
.contact-item.highlight {
    border: 1px solid rgba(99,211,255,.25);
    background: rgba(99,211,255,.05);
}

/*CSOMAGOK*/
/* PRICING SECTION */
.pricing-section {
  padding: 80px 20px;
  background: #0f1724;
  color: #d9e1ea;
}

.pricing-section .section-head {
  text-align: left;
  margin-bottom: 50px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.pricing-card {
  background: rgba(255,255,255,.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #1c2733;
  text-align: center;
  transition: 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #5ac8fa;
}

/* FEATURED */
.pricing-card.featured {
  border: 2px solid #5ac8fa;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5ac8fa;
  color: #000;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 999px;
}

/* TEXT */
.pricing-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #5ac8fa;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pricing-card ul li {
  margin: 8px 0;
  font-size: 14px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #5ac8fa;
  color: #5ac8fa;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #5ac8fa;
  color: #000;
}

.btn.primary {
  background: #5ac8fa;
  color: #000;
  border: none;
}