:root {
  --navy: #10243e;
  --navy-2: #1a3a5c;
  --red: #e63946;
  --red-dark: #c92a37;
  --ink: #22303f;
  --muted: #5b6b7b;
  --bg: #f5f7fa;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(16, 36, 62, .10);
}

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

body {
  /* wix używał futura-lt-light; jost to najbliższy darmowy odpowiednik */
  font-family: "Jost", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
b, strong { font-weight: 600; }

img { max-width: 100%; display: block; }
a { color: var(--red); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* header */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-decoration: none;
}
.logo span { color: var(--red); }
nav ul { display: flex; gap: 28px; list-style: none; }
nav a {
  color: #cfd9e4;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
}
nav a:hover, nav a.active { color: var(--white); }

/* hero */
.hero {
  background: linear-gradient(rgba(16,36,62,.72), rgba(16,36,62,.82)), url("../img/hero-ocean.jpg") center/cover;
  color: var(--white);
  text-align: center;
  padding: 96px 20px;
}
.hero .kicker {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .85rem;
  color: #9fb3c8;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 500;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero .sub {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 1.1rem;
  color: #dbe4ee;
}
.hero .motto {
  margin-top: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffd6da;
}

.btn {
  display: inline-block;
  margin-top: 32px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: .95rem;
}
.btn:hover { background: var(--red-dark); }
.btn.ghost {
  background: transparent;
  border: 2px solid var(--white);
}
.btn.ghost:hover { background: rgba(255,255,255,.12); }

/* sections */
section { padding: 72px 0; }
section.alt { background: var(--white); }
h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.lead { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 44px; }

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.card ul { list-style: none; }
.card ul > li { padding-left: 20px; position: relative; margin-bottom: 6px; color: var(--muted); font-size: .95rem; }
.card ul > li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* testimonials */
.quote-card { display: flex; flex-direction: column; }
.avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.quote-card .who { font-weight: 700; color: var(--navy); }
.quote-card .role { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.quote-card .dur { margin-top: auto; padding-top: 12px; font-size: .85rem; color: var(--red); font-weight: 700; }
blockquote { color: var(--ink); font-size: .97rem; margin: 12px 0; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 14px; }
.before-after h4 { color: var(--navy); font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.before-after ul { list-style: none; }
.before-after ul > li { font-size: .9rem; color: var(--muted); padding-left: 16px; position: relative; margin-bottom: 4px; }
.card .ba-before ul > li::before { content: "–"; position: absolute; left: 0; color: var(--muted); font-weight: 400; }
.card .ba-after ul > li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* two column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  nav ul { gap: 16px; }
}

/* why list */
.why { max-width: 780px; margin: 0 auto; }
.why li { margin-bottom: 18px; list-style: none; padding-left: 30px; position: relative; }
.why li::before { content: "★"; position: absolute; left: 0; color: var(--red); }
.why b { color: var(--navy); }

/* pricing */
.price-cards { align-items: stretch; }
.price-card { display: flex; flex-direction: column; border-top: 4px solid var(--red); }
.price-card .price { font-size: 2rem; font-weight: 800; color: var(--navy); margin: 6px 0 16px; }
.price-card .price small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.price-card ol { padding-left: 20px; color: var(--muted); font-size: .95rem; }
.price-card ol li { margin-bottom: 8px; }
.price-card .btn { margin-top: auto; align-self: start; }

/* contact */
.contact {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.contact h2 { color: var(--white); }
.contact p { max-width: 640px; margin: 0 auto 12px; color: #dbe4ee; }
.contact .photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 72% 35%;
  margin: 0 auto 20px;
}

/* prose pages (regulamento, privacidade) */
.prose { max-width: 780px; margin: 0 auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 48px; }
.prose h1 { color: var(--navy); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 24px; font-size: 1.6rem; }
.prose h2 { text-align: left; font-size: 1.15rem; margin: 28px 0 10px; }
.prose h3 { color: var(--navy); margin: 20px 0 8px; font-size: 1rem; }
.prose p, .prose li { color: var(--ink); font-size: .97rem; margin-bottom: 10px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 12px; }
.prose .org { background: var(--bg); border-radius: 10px; padding: 16px 20px; font-size: .95rem; margin: 12px 0; }
@media (max-width: 600px) { .prose { padding: 28px 20px; } }

/* footer */
footer {
  background: #0b1a2e;
  color: #8fa3b8;
  padding: 36px 20px;
  text-align: center;
  font-size: .9rem;
}
footer ul { list-style: none; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
footer a { color: #c3d1de; text-decoration: none; }
footer a:hover { color: var(--white); }

/* testimonial photos */
.avatar-img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}

/* contact form */
.cform {
  max-width: 440px;
  margin: 28px auto 0;
  display: grid;
  gap: 12px;
  text-align: left;
}
.cform input, .cform textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid #3d5573;
  background: rgba(255,255,255,.06);
  color: var(--white);
}
.cform input::placeholder, .cform textarea::placeholder { color: #9fb3c8; }
.cform input:focus, .cform textarea:focus { outline: 2px solid var(--red); border-color: transparent; }
.cform .btn { margin-top: 4px; justify-self: center; }

/* footer contacts + payment logos */
.foot-contact { margin-bottom: 14px; color: #c3d1de; }
.foot-contact a { color: var(--white); }
.paylogos {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin: 18px 0 10px;
}
.paylogos span {
  background: var(--white);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
}
.paylogos img { height: 18px; width: auto; }
