:root{
  --primary:#08d0d2;
  --dark:#071c46;
  --dark2:#03142f;
  --text:#0f172a;
  --muted:#64748b;
  --bg:#f8fbfd;
  --border:#e2e8f0;
  --shadow:0 12px 35px rgba(2,12,27,0.08);
  --radius:22px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:white;
  color:var(--text);
  line-height:1.7;
}

a{
  color:inherit;
}

.container{
  width:92%;
  max-width:1320px;
  margin:auto;
}

header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(226,232,240,0.7);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
}

.logo{
  display:inline-block;
  text-decoration:none;
  line-height:0;
}

.logo img{
  display:block;
  height:52px;
  width:auto;
}

.logo--footer{
  margin-bottom:20px;
}

.logo--footer img{
  height:48px;
}

nav ul{
  display:flex;
  gap:32px;
  list-style:none;
}

nav a{
  text-decoration:none;
  color:var(--dark);
  font-weight:600;
  transition:color 0.2s;
}

nav a:hover{
  color:var(--primary);
}

.btn{
  background:linear-gradient(135deg,#08d0d2,#0eb7d5);
  color:white;
  padding:14px 28px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 10px 28px rgba(8,208,210,0.35);
  display:inline-block;
  transition:transform 0.2s,box-shadow 0.2s;
  letter-spacing:0.2px;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(8,208,210,0.45);
}

.hero{
  background:
  radial-gradient(circle at top right, rgba(8,208,210,0.22), transparent 30%),
  linear-gradient(135deg,#04173d,#03142f 70%);
  color:white;
  padding:120px 0 100px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:70px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,rgba(8,208,210,0.18),rgba(255,255,255,0.05));
  border:1px solid rgba(8,208,210,0.3);
  padding:10px 20px;
  border-radius:999px;
  margin-bottom:28px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.8px;
  text-transform:uppercase;
  color:#a8e8ea;
}

.hero-badge::before{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 8px var(--primary);
}

.hero h1{
  font-size:74px;
  line-height:1.05;
  margin-bottom:28px;
  font-weight:800;
  letter-spacing:-1.5px;
}

.hero h1 span{
  background:linear-gradient(135deg,#08d0d2 0%,#7ee8ea 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}

.hero p{
  font-size:22px;
  color:#d7e0ef;
  margin-bottom:35px;
  max-width:720px;
}

.trust-row{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.trust-item{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  padding:14px 20px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  letter-spacing:0.2px;
  transition:background 0.2s,border-color 0.2s;
}

.trust-item:hover{
  background:rgba(8,208,210,0.12);
  border-color:rgba(8,208,210,0.4);
}

.search-box{
  background:white;
  padding:16px;
  border-radius:24px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.search-box input,
.search-box select{
  flex:1;
  min-width:220px;
  border:none;
  background:#f8fbfd;
  border-radius:14px;
  padding:18px;
  font-size:16px;
  font-family:inherit;
  color:var(--text);
}

.search-box button{
  border:none;
  background:linear-gradient(135deg,#08d0d2,#0eb7d5);
  color:white;
  border-radius:14px;
  padding:18px 36px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:transform 0.2s;
}

.search-box button:hover{
  transform:translateY(-2px);
}

.hero-visual{
  position:relative;
  min-height:560px;
}

.hero-graphic{
  position:absolute;
  inset:-40px -60px -40px -40px;
  width:calc(100% + 100px);
  height:calc(100% + 80px);
  z-index:0;
  pointer-events:none;
  opacity:0.95;
}

.hero-graphic .float-slow{
  animation:floatY 7s ease-in-out infinite;
  transform-origin:center;
}

.hero-graphic .float-medium{
  animation:floatY 5s ease-in-out infinite;
  animation-delay:-1.5s;
  transform-origin:center;
}

.hero-graphic .float-fast{
  animation:floatY 3.5s ease-in-out infinite;
  animation-delay:-0.8s;
  transform-origin:center;
}

@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

@media(prefers-reduced-motion:reduce){
  .hero-graphic .float-slow,
  .hero-graphic .float-medium,
  .hero-graphic .float-fast{ animation:none; }
}

.hero-card{
  position:relative;
  z-index:1;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:28px;
  padding:32px;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 30px 70px rgba(0,0,0,0.35);
}

.hero-card-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#a8d6e0;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:22px;
}

.hero-card-label .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 0 6px rgba(8,208,210,0.18);
  animation:pulse 2.4s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{ box-shadow:0 0 0 4px rgba(8,208,210,0.18); }
  50%{ box-shadow:0 0 0 9px rgba(8,208,210,0.08); }
}

.domain-preview{
  display:block;
  background:white;
  border-radius:18px;
  padding:22px 24px;
  color:var(--dark);
  margin-bottom:14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.6);
  overflow:hidden;
  transition:transform 0.25s,box-shadow 0.25s;
}

.domain-preview:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,0.25);
}

.domain-preview-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}

.domain-preview h4{
  font-size:26px;
  font-weight:800;
  letter-spacing:-0.5px;
  color:var(--dark);
}

.ext-tag{
  background:#eef8fa;
  color:#0499b0;
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.5px;
  text-transform:uppercase;
}

.domain-preview p{
  color:#43526b;
  font-size:14px;
  line-height:1.5;
  margin:18px -24px -22px;
  padding:14px 24px 16px;
  background:linear-gradient(135deg,rgba(8,208,210,0.10),rgba(4,23,61,0.04));
  border-top:1px solid rgba(8,208,210,0.18);
}

.price{
  color:var(--primary);
  font-size:28px;
  font-weight:800;
  margin-bottom:6px;
  letter-spacing:-0.5px;
}

.price-currency{
  font-size:14px;
  font-weight:700;
  color:var(--muted);
  margin-left:4px;
}

.hero-card-link{
  display:inline-block;
  margin-top:8px;
  color:var(--primary);
  font-weight:700;
  text-decoration:none;
  font-size:15px;
  transition:transform 0.2s;
}

.hero-card-link:hover{
  transform:translateX(4px);
  color:white;
}

.section{
  padding:80px 0;
}

.section-title{
  font-size:52px;
  margin-bottom:20px;
  color:var(--dark);
  font-weight:800;
  letter-spacing:-1.5px;
  line-height:1.1;
}

.section-subtitle{
  font-size:19px;
  color:var(--muted);
  max-width:760px;
  margin-bottom:50px;
}

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

.features-grid{
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}

.card{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:34px;
  transition:transform 0.3s cubic-bezier(.4,0,.2,1),box-shadow 0.3s,border-color 0.3s;
  display:block;
  text-decoration:none;
  color:inherit;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,#08d0d2,#0eb7d5);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.35s cubic-bezier(.4,0,.2,1);
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 50px rgba(2,12,27,0.12);
  border-color:rgba(8,208,210,0.4);
}

.card:hover::before{
  transform:scaleX(1);
}

.card h3{
  margin-bottom:14px;
  color:var(--dark);
  font-size:28px;
  font-weight:800;
  letter-spacing:-0.5px;
}

.card p{
  color:var(--muted);
  font-size:15px;
}

.domain-card .price{
  font-size:32px;
  margin:8px 0 12px;
}

.domain-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.tag{
  display:inline-block;
  margin-top:18px;
  background:linear-gradient(135deg,#eef8fa,#dff3f6);
  color:#0499b0;
  padding:7px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.5px;
  text-transform:uppercase;
}

.cta-row{
  text-align:center;
  margin-top:45px;
}

.dark-section{
  background:var(--bg);
}

/* === Podstrony (regulamin, polityka prywatnosci, cookies) === */

.page-hero{
  background:
    radial-gradient(circle at top right, rgba(8,208,210,0.18), transparent 40%),
    linear-gradient(135deg,#04173d,#03142f 70%);
  color:white;
  padding:90px 0 60px;
}

.page-hero h1{
  font-size:54px;
  line-height:1.1;
  margin-bottom:14px;
  font-weight:800;
}

.page-hero p{
  font-size:19px;
  color:#d7e0ef;
  max-width:720px;
}

.page-content{
  padding:70px 0 100px;
}

.page-content .container{
  max-width:880px;
}

.page-content h2{
  font-size:30px;
  color:var(--dark);
  margin:50px 0 16px;
  font-weight:800;
}

.page-content h2:first-child{
  margin-top:0;
}

.page-content h3{
  font-size:22px;
  color:var(--dark);
  margin:32px 0 12px;
  font-weight:700;
}

.page-content p,
.page-content li{
  color:var(--text);
  font-size:17px;
  line-height:1.75;
  margin-bottom:14px;
}

.page-content ul,
.page-content ol{
  padding-left:24px;
  margin-bottom:20px;
}

.page-content li{
  margin-bottom:8px;
}

.page-content a{
  color:#0499b0;
  text-decoration:underline;
  text-underline-offset:3px;
}

.page-content a:hover{
  color:var(--primary);
}

.page-content .meta{
  color:var(--muted);
  font-size:14px;
  margin-bottom:30px;
  padding:14px 18px;
  background:var(--bg);
  border-radius:12px;
  border:1px solid var(--border);
}

.page-content .callout{
  background:#eef8fa;
  border-left:4px solid var(--primary);
  padding:18px 22px;
  border-radius:8px;
  margin:24px 0;
}

.page-content .callout p:last-child{
  margin-bottom:0;
}

@media(max-width:700px){
  .page-hero{
    padding:60px 0 40px;
  }
  .page-hero h1{
    font-size:38px;
  }
  .page-content{
    padding:50px 0 70px;
  }
  .page-content h2{
    font-size:24px;
  }
}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.faq-item{
  background:white;
  border:1px solid var(--border);
  border-radius:20px;
  padding:30px;
}

.faq-item h3{
  margin-bottom:12px;
  color:var(--dark);
}

/* === Sekcja: kroki "Jak kupic domene" === */

.steps-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:24px;
  position:relative;
}

.step-card{
  background:linear-gradient(180deg,#ffffff 0%,#fafdfe 100%);
  border:1px solid var(--border);
  border-radius:22px;
  padding:38px 30px 32px;
  position:relative;
  overflow:hidden;
  transition:transform 0.3s,box-shadow 0.3s,border-color 0.3s;
  isolation:isolate;
}

.step-card::before{
  content:attr(data-bg);
  position:absolute;
  top:8px;
  right:18px;
  font-size:126px;
  font-weight:900;
  color:#eef8fa;
  line-height:0.9;
  letter-spacing:-4px;
  pointer-events:none;
  z-index:-1;
  transition:color 0.3s,transform 0.3s;
}

.step-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(2,12,27,0.12);
  border-color:rgba(8,208,210,0.4);
}

.step-card:hover::before{
  color:#dff3f6;
  transform:scale(1.05);
}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  border-radius:14px;
  background:linear-gradient(135deg,#08d0d2,#0eb7d5);
  color:white;
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.5px;
  margin-bottom:20px;
  box-shadow:0 10px 24px rgba(8,208,210,0.35);
  position:relative;
}

.step-card h3{
  color:var(--dark);
  font-size:21px;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:-0.3px;
  position:relative;
}

.step-card p{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
  position:relative;
}

/* === Sekcja: kategorie === */

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

@media(max-width:1000px){
  .categories-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

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

.category-card{
  background:white;
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px 30px 40px;
  display:flex;
  align-items:flex-start;
  gap:22px;
  text-decoration:none;
  color:inherit;
  transition:transform 0.3s,box-shadow 0.3s,border-color 0.3s;
  position:relative;
  overflow:hidden;
}

.category-card::after{
  content:'→';
  position:absolute;
  right:24px;
  bottom:24px;
  font-size:22px;
  color:var(--primary);
  opacity:0;
  transform:translateX(-10px);
  transition:opacity 0.3s,transform 0.3s;
  font-weight:700;
}

.category-card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 50px rgba(2,12,27,0.12);
  border-color:rgba(8,208,210,0.45);
}

.category-card:hover::after{
  opacity:1;
  transform:translateX(0);
}

.category-card:hover .category-icon{
  transform:rotate(-6deg) scale(1.08);
  box-shadow:0 14px 30px rgba(8,208,210,0.35);
}

.category-icon{
  flex-shrink:0;
  width:58px;
  height:58px;
  background:linear-gradient(135deg,#08d0d2,#0eb7d5);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 10px 22px rgba(8,208,210,0.22);
  transition:transform 0.3s,box-shadow 0.3s;
  filter:saturate(1);
}

.category-card h3{
  color:var(--dark);
  font-size:19px;
  font-weight:800;
  margin-bottom:6px;
  letter-spacing:-0.3px;
}

.category-card-text{
  min-width:0;
  flex:1;
}

.category-card p{
  color:var(--muted);
  font-size:14.5px;
  line-height:1.55;
}

/* === Sekcja: CTA card (zastapila stats) === */

.cta-section{
  padding:30px 0 90px;
}

.cta-card{
  background:
    radial-gradient(circle at top right, rgba(8,208,210,0.32), transparent 50%),
    radial-gradient(circle at bottom left, rgba(8,208,210,0.18), transparent 40%),
    linear-gradient(135deg,#04173d,#03142f 70%);
  border-radius:32px;
  padding:70px 60px;
  color:white;
  position:relative;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(2,12,27,0.25);
}

.cta-card::before{
  content:'';
  position:absolute;
  top:-100px;
  right:-100px;
  width:380px;
  height:380px;
  border:2px solid rgba(8,208,210,0.15);
  border-radius:50%;
  pointer-events:none;
}

.cta-card::after{
  content:'';
  position:absolute;
  top:-60px;
  right:-60px;
  width:260px;
  height:260px;
  border:2px solid rgba(8,208,210,0.1);
  border-radius:50%;
  pointer-events:none;
}

.cta-content{
  position:relative;
  z-index:1;
  max-width:760px;
}

.cta-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(8,208,210,0.15);
  border:1px solid rgba(8,208,210,0.35);
  padding:8px 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.2px;
  text-transform:uppercase;
  margin-bottom:24px;
  color:#a8e8ea;
}

.cta-badge .dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 8px var(--primary);
}

.cta-card h2{
  font-size:46px;
  font-weight:800;
  letter-spacing:-1.5px;
  line-height:1.1;
  margin-bottom:18px;
}

.cta-card > .container > .cta-card > .cta-content > p,
.cta-card .cta-content > p{
  font-size:19px;
  color:#d7e0ef;
  margin-bottom:36px;
  max-width:620px;
  line-height:1.6;
}

.cta-stats{
  display:flex;
  gap:50px;
  flex-wrap:wrap;
  margin-bottom:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.cta-stat strong{
  display:block;
  color:var(--primary);
  font-size:46px;
  font-weight:800;
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:6px;
}

.cta-stat span{
  color:#a8b8d0;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:600;
}

.cta-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

.cta-buttons .btn,
.cta-buttons .btn-ghost{
  white-space:nowrap;
  flex:0 0 auto;
}

.btn-large{
  padding:17px 32px;
  font-size:16px;
}

.btn-ghost{
  display:inline-block;
  padding:16px 26px;
  color:white;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:14px;
  transition:background 0.2s,border-color 0.2s;
  background:transparent;
}

.btn-ghost:hover{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.4);
}

footer{
  background:#021227;
  color:white;
  padding:70px 0 40px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}

footer h4{
  margin-bottom:20px;
}

footer ul{
  list-style:none;
}

footer li{
  margin-bottom:12px;
}

footer a{
  color:#d0d7e7;
  text-decoration:none;
  transition:color 0.2s;
}

footer a:hover{
  color:var(--primary);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  margin-top:60px;
  padding-top:30px;
  text-align:center;
  color:#93a4c3;
}

@media(max-width:1000px){

  .hero-grid,
  .footer-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:54px;
  }

  .hero-visual{
    min-height:auto;
  }

  .hero-graphic{
    display:none;
  }

  nav{
    display:none;
  }

}

@media(max-width:700px){

  .hero h1{
    font-size:42px;
  }

  .section-title{
    font-size:38px;
  }

  .stats-grid{
    gap:50px;
  }

  .section{
    padding:60px 0;
  }

  .hero{
    padding:80px 0 70px;
  }

  .cta-card{
    padding:50px 28px;
  }

  .cta-card h2{
    font-size:30px;
  }

  .cta-stats{
    gap:26px 36px;
    padding-bottom:28px;
    margin-bottom:32px;
  }

  .cta-stat strong{
    font-size:36px;
  }

  .cta-buttons{
    flex-direction:column;
    align-items:stretch;
    width:100%;
  }

  .cta-buttons .btn,
  .cta-buttons .btn-ghost{
    width:100%;
    text-align:center;
  }

  .step-number{
    font-size:36px;
  }

  .category-card{
    padding:24px 22px;
    gap:16px;
  }

}
