:root {
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --ink: #0d1b2a;
  --ink-soft: #4a5a6e;
  --muted: #5e6f80;
  --accent: #1d7fb8;
  --accent-strong: #145e8a;
  --aegean: #5cc4d6;
  --line: #e3eaf1;
  --shadow: 0 8px 32px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 27, 42, 0.12);
  --radius: 14px;
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

/* ============================================================
   NAV (responsive with hamburger)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; flex-shrink: 0; z-index: 2; }
.logo img { border-radius: 8px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-menu a:hover { color: var(--accent); background: var(--bg-alt); }
.nav-menu a.active { color: var(--accent); background: rgba(29, 127, 184, 0.08); font-weight: 600; }
.nav-menu a.lang {
  border: 1px solid var(--line);
  padding: 6px 12px;
  font-size: 13px;
  margin-left: 8px;
  font-weight: 600;
}
.nav-menu a.lang:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
a.nav-cta, a.nav-cta:visited {
  display: inline-block;
  background: var(--accent) !important;
  color: #fff !important;
  text-decoration: none !important;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(29,127,184,0.35);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}
a.nav-cta:hover {
  background: #155e8a !important;
  box-shadow: 0 4px 16px rgba(29,127,184,0.45);
  transform: translateY(-1px);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  z-index: 2;
}
.nav-toggle .bar {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 0;
    box-shadow: 0 12px 32px rgba(13, 27, 42, 0.12);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu a {
    padding: 14px 12px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu a.lang {
    margin: 12px 0 0;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--line);
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
    box-shadow: none;
    order: 2;
  }
  .nav-toggle { order: 3; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, #f5f8fb 0%, #e9f2f8 100%);
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.hero-logo { width: 110px; height: auto; border-radius: 18px; margin-bottom: 20px; box-shadow: var(--shadow); }
.hero h1 { font-size: 56px; line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.02em; font-weight: 800; }
.accent { color: var(--accent); }
.hero .lead { font-size: 19px; color: var(--ink-soft); margin: 0 0 32px; max-width: 540px; }
.cta { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.muted { color: var(--muted); font-size: 14px; }
.muted.small { font-size: 13px; }

/* Smaller hero variant for sub-pages */
.page-hero {
  background: linear-gradient(135deg, #e9f2f8 0%, #f5f8fb 50%, #fef3e0 100%);
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,196,214,0.18), transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.15), transparent 70%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .badge { margin-bottom: 14px; }
.page-hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.page-hero p { font-size: 18px; color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

/* Store buttons */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; color: #fff; text-decoration: none;
  padding: 12px 24px; border-radius: 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.28); background: #1a1a1a; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn small { font-size: 10px; opacity: 0.8; font-weight: 400; letter-spacing: 0.02em; text-transform: uppercase; }
.store-btn strong { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }

.btn {
  display: inline-block; padding: 14px 24px; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-soft); }

/* Hero phone */
.hero-visual { display: flex; justify-content: center; }
.phone-real {
  background: var(--ink);
  padding: 10px;
  border-radius: 36px;
  box-shadow: 0 32px 64px rgba(13, 27, 42, 0.25);
  max-width: 280px;
}
.phone-real.small { max-width: 240px; }
.phone-real img { display: block; width: 100%; height: auto; border-radius: 28px; }

/* ============================================================
   STATS (horizontal counters)
   ============================================================ */
.stats {
  background: linear-gradient(135deg, var(--ink) 0%, #15263b 100%);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(92,196,214,0.12), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(29,127,184,0.10), transparent 50%);
  pointer-events: none;
}
.stats-row {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
}
.stat {
  flex: 1 1 0; min-width: 0;
  display: flex; align-items: center; gap: 14px;
  padding: 6px 10px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
}
.stat strong {
  font-size: 48px; font-weight: 800;
  color: var(--aegean);
  letter-spacing: -0.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-size: 36px; margin: 0 0 12px; letter-spacing: -0.01em; font-weight: 800; }
.section-lead { font-size: 17px; color: var(--ink-soft); margin: 0 0 40px; max-width: 640px; }

.section-center { text-align: center; }
.section-center .section-lead { margin-left: auto; margin-right: auto; }

/* About (home page) */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: center;
}
.about-grid p { color: var(--ink-soft); font-size: 16px; margin: 0 0 14px; line-height: 1.7; }

/* Why-cards (home page benefits) */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.06;
  transform: translate(40%, -40%);
  background: var(--card-color, var(--accent));
  transition: transform .3s ease, opacity .3s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-card:hover::before { transform: translate(30%, -30%) scale(1.2); opacity: 0.1; }
.why-card:nth-child(1) { --card-color: #1d7fb8; }
.why-card:nth-child(1) .why-icon { background: linear-gradient(135deg, #5cc4d6, #1d7fb8); }
.why-card:nth-child(2) { --card-color: #2e7d32; }
.why-card:nth-child(2) .why-icon { background: linear-gradient(135deg, #66bb6a, #2e7d32); }
.why-card:nth-child(3) { --card-color: #f5a623; }
.why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, #ffc658, #f5a623); }
.why-card:nth-child(4) { --card-color: #c2185b; }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, #ec5b88, #c2185b); }
.why-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--aegean), var(--accent));
  color: #fff;
  position: relative;
  z-index: 1;
}
.why-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

/* ============================================================
   SHOWCASE (screenshots grid)
   ============================================================ */
.showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
  margin: 40px auto 0;
  max-width: 1080px;
}
.showcase figure {
  margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  align-items: center;
}
.showcase img {
  width: 100%; max-width: 200px; height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.14);
  transition: transform .2s ease, box-shadow .2s ease;
}
.showcase figure:hover img {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13, 27, 42, 0.18);
}
.showcase figcaption {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  font-weight: 500;
}

/* ============================================================
   INLINE CTA card (for home page after showcase)
   ============================================================ */
.contact-cta-card {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--aegean) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  box-shadow: 0 20px 50px rgba(29, 127, 184, 0.25);
}
.contact-cta-text h2 { color: #fff; margin: 0 0 6px; font-size: 26px; line-height: 1.2; letter-spacing: -0.01em; }
.contact-cta-text p { margin: 0; color: rgba(255,255,255,0.9); font-size: 16px; }
.contact-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  text-decoration: none; font-weight: 700; font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-cta-primary { background: #fff; color: var(--accent); }
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.btn-cta-ghost { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn-cta-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ============================================================
   PER-ISLAND (tools page)
   ============================================================ */
.per-island-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 64px; align-items: center;
}
.per-island-visual { display: flex; justify-content: center; }
.island-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.island-list li {
  position: relative; padding: 4px 0 4px 24px; color: var(--ink-soft);
  font-size: 14px; line-height: 1.5;
}
.island-list li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.island-list li strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   TOOLS CARDS
   ============================================================ */
.cat-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.cat-nav a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.cat-nav a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.cat-title {
  display: flex; align-items: center; gap: 14px;
  font-size: 22px; font-weight: 700; margin: 56px 0 24px;
  color: var(--ink);
}
.cat-title:first-of-type { margin-top: 0; }
.cat-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 700;
}

.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 18px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--aegean), var(--accent));
}
.card .icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.card .icon.i1 { background: linear-gradient(135deg, #f5a85f, #e87a3d); }
.card .icon.i2 { background: linear-gradient(135deg, #95d3b1, #3da670); }
.card .icon.i3 { background: linear-gradient(135deg, #5cc4d6, #0096c7); }
.card .icon.i4 { background: linear-gradient(135deg, #ff7a8a, #d4344a); }
.card .icon.i5 { background: linear-gradient(135deg, #6dc7be, #009688); }
.card .icon.i6 { background: linear-gradient(135deg, #f5a8c8, #e91e63); }
.card .icon.i7 { background: linear-gradient(135deg, #8a9cf5, #3f51b5); }
.card .icon.i8 { background: linear-gradient(135deg, #6dc8b9, #00695c); }
.card .icon.i9 { background: linear-gradient(135deg, #c79cf5, #8e44ad); }
.card .icon.i10 { background: linear-gradient(135deg, #b89cf5, #7b2fbe); }
.card .icon.i11 { background: linear-gradient(135deg, #66d9e8, #00acc1); }
.card .icon.i12 { background: linear-gradient(135deg, #5cc4d6, #0096c7); }
.card .icon.i13 { background: linear-gradient(135deg, #d6a06e, #ad5a00); }
.card .icon.i14 { background: linear-gradient(135deg, #f5d76e, #d4a82f); color: #5a4810; }
.card .icon.i15 { background: linear-gradient(135deg, #ffa85c, #e85a1c); }
.card .icon.i16 { background: linear-gradient(135deg, #6dadd6, #0077b6); }
.card .icon.i17 { background: linear-gradient(135deg, #6db5e0, #0288d1); }
.card .icon.i18 { background: linear-gradient(135deg, #ffae6e, #e65100); }
.card .icon.i19 { background: linear-gradient(135deg, #6dadd6, #0077b6); }
.card .icon.i20 { background: linear-gradient(135deg, #6dadd6, #0077b6); }
.card .icon.i21 { background: linear-gradient(135deg, #e8a7d4, #ad1457); }
.card .icon.i22 { background: linear-gradient(135deg, #ffae6e, #e65100); }
.card .icon.i23 { background: linear-gradient(135deg, #95d3b1, #2e7d32); }
.card .icon.i24 { background: linear-gradient(135deg, #b1d895, #558b2f); }
.card .icon.i25 { background: linear-gradient(135deg, #95d3b1, #2e7d32); }
.card .icon.i26 { background: linear-gradient(135deg, #6db5e0, #1565c0); }
.card .icon.i27 { background: linear-gradient(135deg, #6dc8b9, #00695c); }
.card .icon.i28 { background: linear-gradient(135deg, #b89cf5, #6a1b9a); }
.card h4 { margin: 0 0 6px; font-size: 17px; font-weight: 700; }
.card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

/* ============================================================
   BUSINESS PAGE
   ============================================================ */
.business-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.badge {
  display: inline-block; background: rgba(29, 127, 184, 0.1); color: var(--accent);
  padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.check-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.check-list li {
  position: relative; padding: 8px 0 8px 32px; color: var(--ink-soft);
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6 11.5L2.5 8 4 6.5l2 2 6-6L13.5 4z'/></svg>") center/12px no-repeat;
}
.categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 18px; display: flex; flex-direction: column; gap: 4px;
}
.cat-card strong { color: var(--ink); font-size: 16px; }
.cat-card span { color: var(--muted); font-size: 13px; }

/* Why list — new design */
.biz-why-section { background: var(--bg-alt); }
.biz-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 48px;
}
.biz-stat {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 20px; text-align: center;
}
.biz-stat strong {
  display: block; font-size: 40px; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.biz-stat span { display: block; color: var(--ink-soft); font-size: 13px; margin-top: 8px; line-height: 1.4; }

.biz-benefits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.biz-benefit-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.biz-benefit-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.biz-benefit-icon {
  width: 48px; height: 48px; min-width: 48px; min-height: 48px; border-radius: 12px;
  background: rgba(29,127,184,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; overflow: hidden; flex-shrink: 0;
}
.biz-benefit-icon svg { width: 24px; height: 24px; min-width: 24px; min-height: 24px; max-width: 24px; max-height: 24px; stroke: var(--accent); flex-shrink: 0; }
.biz-benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.biz-benefit-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* Steps (3-step process) */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: -16px; left: 24px;
  width: 36px; height: 36px;
  border-radius: 10px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
}
.step:nth-child(1) .step-num { background: linear-gradient(135deg, #5cc4d6, #1d7fb8); box-shadow: 0 6px 16px rgba(29, 127, 184, 0.35); }
.step:nth-child(2) .step-num { background: linear-gradient(135deg, #ffc658, #f5a623); box-shadow: 0 6px 16px rgba(245, 166, 35, 0.35); }
.step:nth-child(3) .step-num { background: linear-gradient(135deg, #66bb6a, #2e7d32); box-shadow: 0 6px 16px rgba(46, 125, 50, 0.35); }
.step h3 { margin: 12px 0 8px; font-size: 18px; font-weight: 700; }
.step p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* Partner businesses listing */
.partners-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 32px;
}
.partners-featured { margin-top: 32px; }
.partners-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.partners-compact-grid .partner-island-card {
  padding: 22px 20px;
}
.partners-compact-grid .partner-island-card h3 { font-size: 18px; margin-bottom: 4px; }
.partners-compact-grid .island-meta { margin-bottom: 14px; }
.partners-compact-grid .partner-list li { font-size: 13px; padding: 8px 12px; gap: 8px; }
.partner-island-card.empty .partner-list { opacity: 0.55; }
.partner-island-card.empty .partner-list li { background: transparent; border: 1px dashed var(--line); font-style: italic; }
.partner-island-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.partner-island-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--island-color, var(--accent));
  border-radius: 16px 16px 0 0;
}
.partner-island-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.partners-featured .partner-island-card { --island-color: linear-gradient(90deg, #1d7fb8, #5cc4d6); }
.partners-compact-grid .partner-island-card:nth-child(1) { --island-color: #2e7d32; }
.partners-compact-grid .partner-island-card:nth-child(2) { --island-color: #c2185b; }
.partners-compact-grid .partner-island-card:nth-child(3) { --island-color: #f5a623; }
.partners-compact-grid .partner-island-card:nth-child(4) { --island-color: #6a1b9a; }
.partners-compact-grid .partner-island-card:nth-child(5) { --island-color: #00897b; }
.partners-compact-grid .partner-island-card:nth-child(6) { --island-color: #d84315; }
.partner-island-card h3 {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 6px; font-size: 22px; font-weight: 800;
}
.partner-island-card .island-meta {
  font-size: 13px; color: var(--muted); margin: 0 0 18px;
  text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;
}
.partner-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.partner-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-radius: 10px;
  font-size: 14px;
}
.partner-list .ptype {
  flex-shrink: 0;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 3px 8px; border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.partner-list .ptype.hotel { background: #e3f2fd; color: #1565c0; border-color: transparent; }
.partner-list .ptype.activity { background: #f3e5f5; color: #6a1b9a; border-color: transparent; }
.partner-list .ptype.car { background: #fff3e0; color: #e65100; border-color: transparent; }
.partner-list .ptype.beauty { background: #fce4ec; color: #c2185b; border-color: transparent; }
.partner-list .ptype.cafe { background: #efebe9; color: #5d4037; border-color: transparent; }
.partner-list .pname {
  flex: 1; color: var(--ink); font-weight: 500;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-card {
  display: flex; gap: 28px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px; box-shadow: var(--shadow);
}
.contact-avatar {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aegean), var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; letter-spacing: 0.5px;
}
.contact-info { flex: 1; }
.contact-info > strong { display: block; font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.contact-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.contact-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 10px;
}
.contact-label {
  font-size: 12px; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em;
  min-width: 70px;
}
.contact-list a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 16px;
}
.contact-list a:hover { color: var(--accent); }

.reasons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 40px;
}
.reason {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.reason svg { width: 28px; height: 28px; color: var(--accent); margin-bottom: 12px; }
.reason h3 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.reason p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

/* Contact status badge */
.contact-status {
  display: flex; align-items: center; gap: 8px;
  margin: 8px 0 0;
}
.contact-online-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  flex-shrink: 0;
}
.contact-status-text { font-size: 13px; color: var(--ink-soft); }
.contact-reply-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(29,127,184,0.08); color: var(--accent);
  border: 1px solid rgba(29,127,184,0.2);
  border-radius: 20px; padding: 5px 12px;
  font-size: 13px; font-weight: 600; margin-top: 14px;
}
.contact-actions {
  display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.contact-action-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.contact-action-btn:hover { transform: translateY(-1px); }
.contact-action-primary { background: var(--accent); color: #fff; }
.contact-action-primary:hover { background: var(--accent-strong); }
.contact-action-ghost { background: var(--bg-alt); color: var(--ink); border: 1px solid var(--line); }
.contact-action-ghost:hover { background: var(--line); }

/* Island preview grid */
.islands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.island-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(13,27,42,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.island-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,27,42,0.13); }
.island-card-vis {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}
.island-card-body {
  padding: 16px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.island-card-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px;
}
.island-card-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0 0 10px;
}
.island-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(29,127,184,0.1);
  color: var(--accent);
}

/* ============================================================
   FAQ (accordion — handled by details.faq-item rules above)
   ============================================================ */
details a { color: var(--accent); }

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.cta-bottom {
  background: linear-gradient(135deg, var(--ink) 0%, #1a3550 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-bottom h2 { color: #fff; font-size: 32px; margin: 0 0 12px; }
.cta-bottom p { color: rgba(255,255,255,0.75); font-size: 17px; margin: 0 0 28px; }
.cta-bottom .cta { justify-content: center; }
.cta-bottom .store-btn { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.25); }
.cta-bottom .store-btn:hover { background: rgba(255,255,255,0.22); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.25);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .15s ease;
  z-index: 100;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-strong); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  background: #fafbfc;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-grid h4 { font-size: 14px; font-weight: 700; margin: 0 0 14px; color: var(--ink); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a { color: var(--ink-soft); text-decoration: none; font-size: 14px; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand strong { font-size: 18px; display: block; margin-bottom: 6px; }
.footer-brand p { margin: 0; color: var(--ink-soft); font-size: 14px; max-width: 280px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom small, .footer-bottom a { color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { padding: 48px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 40px; }
  .hero-visual { order: -1; }
  .hero-logo { width: 90px; }
  .phone-real { max-width: 240px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .business-grid { grid-template-columns: 1fr; gap: 32px; }
  .biz-stats-row { grid-template-columns: repeat(2, 1fr); }
  .biz-benefits { grid-template-columns: 1fr; }
  .per-island-grid { grid-template-columns: 1fr; gap: 32px; }
  .per-island-visual { order: -1; }
  .island-list { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .partners-grid { grid-template-columns: 1fr; }
  .partners-compact-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: 1fr; }
  .islands-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .section h2 { font-size: 28px; }
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: 34px; }
  .stats-row { flex-wrap: wrap; gap: 24px 12px; }
  .stat { flex: 1 1 calc(50% - 12px); }
  .stat:nth-child(2n)::after { display: none; }
  .stat strong { font-size: 40px; }
  .showcase { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .contact-card { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
  .contact-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .contact-cta-card { flex-direction: column; align-items: stretch; text-align: center; padding: 28px 24px; gap: 20px; }
  .contact-cta-text h2 { font-size: 22px; }
  .contact-cta-buttons { justify-content: center; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .categories { grid-template-columns: 1fr; }
  .partners-compact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 16px; }
  .stat strong { font-size: 34px; }
  .stat::after { display: none !important; }
  .stat span { font-size: 11px; white-space: normal; }
  .cat-title { font-size: 19px; }
  .cta-bottom { padding: 56px 0; }
  .cta-bottom h2 { font-size: 24px; }
  .showcase { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .page-hero h1 { font-size: 28px; }
  .section { padding: 48px 0; }
  .section h2 { font-size: 24px; }
}

/* ============================================================
   FEATURES GRID (new features section on home page)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.feature-card {
  background: var(--bg-card, #fff);
  border: 1px solid #e8edf2;
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow .2s;
}
.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f1923;
}
.feature-card p {
  font-size: .92rem;
  color: #5a6472;
  line-height: 1.6;
  margin: 0;
}

/* FAQ accordion */
.faq-group { margin-bottom: 40px; }
.faq-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(29,127,184,0.18);
}
details.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 0;
  background: var(--bg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
details.faq-item[open] { box-shadow: 0 4px 20px rgba(13,27,42,0.07); }
details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d7fb8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-body {
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
}
.faq-body p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 12px 0 0;
}
.faq-body p:last-child { margin-bottom: 0; }
