/* ===========================
   CONTI SMART – Global Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg: #ffffff;
  --bg2: #faf8f5;
  --bg3: #f0ede8;
  --border: rgba(0, 0, 0, 0.08);
  --accent: #f26a1b;
  --accent2: #f5a623;
  --accent3: rgba(242, 106, 27, 0.26);
  --accent4: #32D3B6;
  --text: #1a1410;
  --muted: #7a6a5a;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0, 229, 160, 0.08);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-btn: arial;
  --max-w: 960px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* Background grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
header {
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(13, 15, 20, 0.85);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.3rem;
  text-decoratio: none;
  color: rgb(0 0 0 / 0%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent4);
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  display: inline-block;
}

nav {
  display: flex;
  gap: 4px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color .2s, background .2s;
}

nav a:hover,
nav a.active {
  color: var(--text);
  background: var(--bg3);
}

/* ── HERO ── */
.hero {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 229, 160, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid rgba(0, 229, 160, 0.25);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ── BANK CARD ── */
.bank-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .3s, box-shadow .3s;
}

.bank-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  box-shadow: var(--shadow);
}

.bank-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.bank-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
}

.bank-logo.ing {
  background: #ff6200;
  color: #fff;
}

.bank-logo.buddy {
  background: #7c4dff;
  color: #fff;
}

.bank-logo.bbva {
  background: #001391;
  color: #fff;
}


.bank-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}

.bank-card-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ── CODE BOX ── */
.code-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0;
}

.code-value {
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.btn-copy {
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.3);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.btn-copy:hover {
  background: rgba(0, 229, 160, 0.22);
}

.btn-copy.copied {
  background: rgba(0, 229, 160, 0.25);
  border-color: var(--accent);
}

/* ── CTA BUTTON ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent3);
  color: #0d0f14;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

.btn-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-cta2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.3);
  color: #0d0f14;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

.btn-cta2:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}

.btn-secondary:hover {
  background: var(--bg3);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ── STEPS ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid rgba(0, 229, 160, 0.3);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
}

.step-text {
  font-size: 0.95rem;
  color: var(--muted);
  padding-top: 4px;
}

.step-text strong {
  color: var(--text);
}

/* ── PROS ── */
.pros {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.pro-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.pro-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(0, 229, 160, 0.15);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
}

/* ── GRID ── */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-2 .bank-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: 50%;
  margin: 0 auto;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-q {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-a {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--border);
}

/* ── INTERNAL LINKS ── */
.cluster-nav {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 40px 0;
}

.cluster-nav h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.cluster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cluster-link {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color .2s, color .2s;
}

.cluster-link:hover,
.cluster-link.current {
  border-color: rgba(0, 229, 160, 0.4);
  color: var(--accent);
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 48px 0 32px;
}

.page-header h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-header h1 em {
  font-style: normal;
  color: var(--accent);
}

.page-header p {
  color: var(--muted);
  max-width: 580px;
}

/* ── SECTION ── */
section {
  padding: 16px 0 40px;
}

section h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ── HIGHLIGHT BOX ── */
.highlight {
  background: rgba(0, 229, 160, 0.06);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.92rem;
  margin: 20px 0;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 60px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

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

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .header-inner {
    padding: 14px 16px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .bank-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .code-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .code-value {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    word-break: break-all;
  }

  .code-box>div,
  .bank-card>div[style*="display:flex"] {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta,
  .btn-copy,
  .btn-cta2 {
    width: 100%;
    justify-content: center;
  }

  .pro-item {
    display: block;
    line-height: 1.6;
  }

  .pro-item::before {
    float: left;
    margin-right: 8px;
    margin-top: 3px;
  }

  .grid-2 .bank-card:last-child:nth-child(odd) {
    width: 100%;
  }

}


.hero {
  padding: 48px 16px 40px;
}

.code-value {
  font-size: 1.1rem;
}
}