/* ============================================================
   INOI BANK — Website stylesheet
   Modern neobank look: deep blue + white + soft gray
   ============================================================ */
:root {
  --primary: #1E40AF;
  --primary-dark: #1E3A8A;
  --primary-light: #3B82F6;
  --accent: #10B981;
  --warning: #F59E0B;
  --text: #111827;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --bg-soft: #F9FAFB;
  --bg-card: #FFFFFF;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(30, 64, 175, 0.08);
  --shadow-lg: 0 10px 40px rgba(30, 64, 175, 0.15);
  --radius: 14px;
  --radius-lg: 22px;
}

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

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ────── NAVBAR ────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 40px; height: 40px; }
.nav-logo-text { font-weight: 800; font-size: 18px; color: var(--primary); letter-spacing: 1px; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s, background .2s;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); color: white !important; }

/* Mobile burger */
.burger { display: none; background: none; border: 0; cursor: pointer; font-size: 26px; color: var(--text); }

@media (max-width: 800px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 68px; left: 0; right: 0;
    background: white; flex-direction: column; padding: 16px 24px;
    box-shadow: var(--shadow); gap: 14px;
  }
}

/* ────── HERO ────── */
.hero {
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 45%, #3B82F6 100%);
  color: white;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 span { color: #FCD34D; }
.hero p { font-size: 17px; opacity: .92; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.btn-primary { background: white; color: var(--primary); box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--primary); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.12); color: white; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #059669; color: white; }

/* Hero phone mockup */
.hero-phone {
  position: relative;
  display: flex; justify-content: center;
}
.phone-frame {
  width: 280px; height: 580px;
  background: #111827;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
}
.phone-frame::before {
  content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px; background: #111827; border-radius: 20px; z-index: 2;
}
.phone-frame img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 30px;
  display: block;
}

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .phone-frame { width: 240px; height: 500px; }
}

/* ────── SECTIONS ────── */
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 20px;
  background: rgba(30, 64, 175, 0.08); color: var(--primary);
  font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 12px; text-transform: uppercase;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.5px;
  max-width: 720px; margin: 0 auto 12px;
}
.section-title p { color: var(--text-light); max-width: 640px; margin: 0 auto; font-size: 16px; }

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

/* About */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.about-stat {
  background: white; padding: 34px 28px; border-radius: var(--radius-lg);
  text-align: center; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.about-stat .icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px;
}
.about-stat h3 { font-size: 20px; margin-bottom: 8px; }
.about-stat p { color: var(--text-light); font-size: 14px; }

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

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: white; padding: 32px 26px; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.feature .ficon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.feature.c1 .ficon { background: #DBEAFE; color: #1E40AF; }
.feature.c2 .ficon { background: #FCE7F3; color: #BE185D; }
.feature.c3 .ficon { background: #D1FAE5; color: #065F46; }
.feature.c4 .ficon { background: #FEE2E2; color: #B91C1C; }
.feature.c5 .ficon { background: #FEF3C7; color: #92400E; }
.feature.c6 .ficon { background: #E0E7FF; color: #3730A3; }
.feature.c7 .ficon { background: #FEE2E2; color: #DC2626; }
.feature.c8 .ficon { background: #D1FAE5; color: #059669; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

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

/* Screenshots gallery */
.screens-gallery {
  display: flex; gap: 28px; padding: 20px 0 40px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.screens-gallery::-webkit-scrollbar { height: 8px; }
.screens-gallery::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.screen-phone {
  flex: 0 0 auto;
  width: 260px;
  background: #111827;
  border-radius: 32px;
  padding: 10px;
  scroll-snap-align: start;
  box-shadow: var(--shadow-lg);
  transition: transform .3s;
}
.screen-phone:hover { transform: translateY(-8px); }
.screen-phone img { border-radius: 24px; aspect-ratio: 9/19; object-fit: cover; }
.screen-label {
  margin-top: 14px; text-align: center; color: var(--text-light);
  font-size: 13px; font-weight: 500;
}

/* Download section */
.download-section {
  background: linear-gradient(135deg, #111827 0%, #1E3A8A 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  margin: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: ''; position: absolute; top: -30%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.25), transparent 70%);
}
.download-section h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; position: relative; }
.download-section p { opacity: .85; margin-bottom: 28px; position: relative; }
.download-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 12px; background: white; color: #111827;
  text-decoration: none; font-weight: 600; font-size: 14px;
  transition: transform .2s, box-shadow .2s; box-shadow: var(--shadow);
  min-width: 200px;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #111827; }
.store-btn .store-icon { font-size: 28px; }
.store-btn small { display: block; font-size: 11px; opacity: .65; font-weight: 400; text-transform: uppercase; letter-spacing: .5px; }
.store-btn strong { display: block; font-size: 15px; }
.store-btn.soon { background: transparent; color: white; border: 2px solid rgba(255,255,255,.3); }
.store-btn.soon:hover { background: rgba(255,255,255,.08); color: white; }

/* ────── PAGE HEADER (non-home) ────── */
.page-header {
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
  color: white;
  padding: 60px 0 70px;
  text-align: center;
}
.page-header h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 800; margin-bottom: 10px; }
.page-header p { opacity: .85; max-width: 600px; margin: 0 auto; }

.content-page { padding: 60px 0; }
.content-page h2 {
  font-size: 22px; color: var(--primary); margin: 36px 0 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--bg-soft);
}
.content-page h3 { font-size: 17px; margin: 22px 0 10px; color: var(--text); }
.content-page p { margin-bottom: 14px; color: #374151; font-size: 15px; line-height: 1.7; }
.content-page ul { margin: 10px 0 20px 24px; }
.content-page li { margin-bottom: 6px; color: #374151; font-size: 15px; }
.content-page strong { color: var(--text); font-weight: 600; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.contact-info {
  background: var(--bg-soft); padding: 32px; border-radius: var(--radius);
}
.contact-info h3 { margin-bottom: 20px; color: var(--primary); }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-row .icon {
  width: 42px; height: 42px; background: white; color: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-row strong { display: block; margin-bottom: 2px; color: var(--text); }
.contact-row span { color: var(--text-light); font-size: 14px; }
.contact-row a { color: var(--primary); font-weight: 500; }

.contact-form label {
  display: block; margin-bottom: 6px; font-size: 14px; font-weight: 500; color: var(--text);
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 15px; margin-bottom: 18px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn-primary { background: var(--primary); color: white; width: 100%; justify-content: center; }
.contact-form .btn-primary:hover { background: var(--primary-dark); color: white; }

@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ────── FOOTER ────── */
.footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 60px 0 24px;
  margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: white; margin-bottom: 16px; font-size: 15px; }
.footer a { color: #CBD5E1; display: block; padding: 4px 0; font-size: 14px; }
.footer a:hover { color: white; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 38px; height: 38px; }
.footer-brand span { color: white; font-weight: 800; font-size: 18px; letter-spacing: 1px; }
.footer-about { color: #94A3B8; font-size: 14px; line-height: 1.7; }
.footer-legal {
  background: rgba(255,255,255,0.05); padding: 14px 0; border-radius: 10px;
  font-size: 12px; color: #94A3B8; text-align: center; margin-top: 20px;
}
.footer-legal span { display: block; margin: 2px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: #94A3B8;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ────── COOKIE BANNER ────── */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 520px; margin: 0 auto;
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  z-index: 200;
  display: none;
}
.cookie-banner.show { display: block; animation: slideUp .4s ease; }
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner h4 { margin-bottom: 6px; font-size: 15px; }
.cookie-banner p { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.cookie-banner .btns { display: flex; gap: 10px; }
.cookie-banner .btns button {
  flex: 1; padding: 10px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  border: 0; cursor: pointer;
}
.cookie-banner .btn-accept { background: var(--primary); color: white; }
.cookie-banner .btn-decline { background: var(--bg-soft); color: var(--text); }

/* ────── TRANSLATE WIDGET ────── */
.translate-bar {
  background: var(--bg-soft);
  padding: 8px 0;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.translate-bar select {
  border: 0; background: transparent; color: var(--primary);
  font-weight: 600; cursor: pointer; font-family: inherit; font-size: 13px;
}
