/* ═══════════ TAON WORKS — style.css ═══════════ */
:root {
  --db: #2C3E50; --lb: #4DA8DA; --ab: #5DADE2; --bk: #1A1A1A;
  --wh: #fff; --rd: #E63946; --gy: #7F8C8D; --lg: #F5F7FA; --mg: #BDC3C7;
  --fd: 'Bebas Neue', sans-serif;
  --fh: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--bk); background: var(--wh); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════ ANIMATIONS ═══════ */
/* Start visible; JS adds .anim-ready to body when observer is set up */
.anim, .anim-l, .anim-r { transition: opacity .7s ease, transform .7s ease; }
.anim-ready .anim { opacity: 0; transform: translateY(36px); }
.anim-ready .anim-l { opacity: 0; transform: translateX(-40px); }
.anim-ready .anim-r { opacity: 0; transform: translateX(40px); }
.anim.show, .anim-l.show, .anim-r.show { opacity: 1 !important; transform: none !important; }

/* ═══════ NAV ═══════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all .35s ease; }
.nav.scrolled { background: rgba(26,26,26,.94); backdrop-filter: blur(12px); padding: 10px 0; box-shadow: 0 2px 16px rgba(0,0,0,.25); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.nav-logo { height: 80px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-family: var(--fh); font-weight: 600; font-size: .88rem; letter-spacing: 1px; text-transform: uppercase; color: var(--wh); padding: 4px 0; position: relative; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--lb); transition: width .35s ease; }
.nav-links a:hover { color: var(--lb); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--lb) !important; color: var(--wh) !important; padding: 8px 20px !important; border-radius: 4px; }
.nav-cta:hover { background: var(--ab) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2px; background: var(--wh); transition: all .3s; }
.nav-toggle.on span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.on span:nth-child(2) { opacity: 0; }
.nav-toggle.on span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* lang switcher */
.lang-sw { position: relative; margin-left: 10px; }
.lang-btn { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 5px; padding: 4px 7px; cursor: pointer; color: var(--wh); font-family: var(--fh); font-size: .7rem; font-weight: 600; letter-spacing: 1px; }
.lang-fl { width: 18px; height: 12px; border-radius: 2px; }
.lang-dd { position: absolute; top: calc(100% + 4px); right: 0; background: var(--wh); border-radius: 7px; box-shadow: 0 6px 24px rgba(0,0,0,.18); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-5px); transition: all .2s ease; min-width: 100px; z-index: 1002; }
.lang-sw.open .lang-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-opt { display: flex; align-items: center; gap: 6px; width: 100%; padding: 6px 10px; border: none; background: none; cursor: pointer; font-family: var(--fh); font-size: .75rem; font-weight: 600; color: var(--db); }
.lang-opt:hover { background: var(--lg); }
.lang-opt.active { background: rgba(77,168,218,.1); color: var(--lb); }

/* ═══════ HERO ═══════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--db); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(77,168,218,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(77,168,218,.1) 1px, transparent 1px); background-size: 60px 60px; animation: gridAnim 20s linear infinite; }
@keyframes gridAnim { to { transform: translate(60px, 60px); } }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particles .dot { position: absolute; width: 4px; height: 4px; background: var(--lb); border-radius: 50%; opacity: 0; animation: dotUp 7s ease-in-out infinite; box-shadow: 0 0 6px var(--lb); }
@keyframes dotUp { 0%{opacity:0;transform:translateY(100vh) scale(.5)} 10%,80%{opacity:.7} 100%{opacity:0;transform:translateY(-80px) scale(.8)} }
.hero-content { max-width: 640px; }
.hero-badge { display: inline-block; padding: 5px 14px; border: 1px solid rgba(77,168,218,.3); border-radius: 30px; margin-bottom: 20px; font-family: var(--fh); font-size: .76rem; letter-spacing: 2px; text-transform: uppercase; color: var(--lb); }
.hero-title { font-family: var(--fd); font-size: clamp(3rem, 8vw, 5.5rem); line-height: .95; color: var(--wh); margin-bottom: 6px; }
.hero-title span { color: var(--lb); }
.hero-tagline { font-family: var(--fh); font-size: 1.2rem; font-weight: 300; color: var(--mg); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.55); max-width: 480px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { font-family: var(--fh); font-weight: 600; font-size: .88rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 11px 28px; border-radius: 4px; cursor: pointer; border: none; display: inline-flex; align-items: center; gap: 8px; transition: all .3s ease; }
.btn-p { background: var(--lb); color: var(--wh); }
.btn-p:hover { background: var(--ab); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(77,168,218,.3); }
.btn-o { background: transparent; color: var(--wh); border: 1.5px solid rgba(255,255,255,.2); }
.btn-o:hover { border-color: var(--lb); color: var(--lb); }

/* ═══════ STATS ═══════ */
.stats { background: var(--bk); overflow: hidden; position: relative; }
.stats::before { content: ''; display: block; height: 3px; background: linear-gradient(90deg, var(--lb), var(--rd), var(--lb)); background-size: 200%; animation: grad 4s linear infinite; }
@keyframes grad { to { background-position: 200%; } }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; }
.stat { padding: 28px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,.05); }
.stat:last-child { border-right: none; }
.stat-val { font-family: var(--fd); font-size: 2.2rem; color: var(--lb); line-height: 1; }
.stat-lbl { font-family: var(--fh); font-size: .72rem; color: var(--gy); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ═══════ SECTIONS ═══════ */
.section { padding: 80px 0; position: relative; }
.section.dark { background: var(--db); color: var(--wh); overflow: hidden; }
.section.dark .sec-title { color: var(--wh); }
.section.dark .sec-text { color: rgba(255,255,255,.45); }
.section.light { background: var(--lg); }
.sec-label { font-family: var(--fh); font-weight: 600; font-size: .75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--lb); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.sec-label::before { content: ''; width: 24px; height: 2px; background: var(--lb); }
.sec-title { font-family: var(--fd); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1; color: var(--db); margin-bottom: 14px; }
.sec-text { font-size: .95rem; color: var(--gy); max-width: 520px; line-height: 1.65; margin-bottom: 8px; }

/* ═══════ ABOUT ═══════ */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.about-visual { background: var(--lg); border-radius: 8px; aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; }
.about-logo { width: 384px; }
.about-est { font-family: var(--fh); font-size: .78rem; color: var(--lb); letter-spacing: 2px; text-transform: uppercase; }
.about-left { position: relative; }
.about-badge { position: absolute; bottom: -16px; right: -16px; background: var(--lb); color: var(--wh); padding: 14px 20px; border-radius: 7px; box-shadow: 0 8px 24px rgba(77,168,218,.3); }
.about-badge strong { display: block; font-family: var(--fd); font-size: 1.8rem; line-height: 1; }
.about-badge span { font-family: var(--fh); font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; opacity: .85; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.feat { display: flex; gap: 10px; padding: 12px; border-radius: 7px; transition: background .3s; }
.feat:hover { background: var(--lg); }
.feat-ic { width: 34px; height: 34px; min-width: 34px; background: rgba(77,168,218,.1); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.feat strong { display: block; font-family: var(--fh); font-weight: 700; font-size: .85rem; color: var(--db); }
.feat span { font-size: .75rem; color: var(--gy); }

/* ═══════ SERVICES CARDS ═══════ */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; width: 100%; }
.card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 32px 24px; position: relative; overflow: hidden; transition: all .4s ease; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--lb); transform: scaleX(0); transition: transform .4s ease; }
.card:hover { background: rgba(255,255,255,.07); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.card:hover::before { transform: scaleX(1); }
.card-nr { font-family: var(--fd); font-size: 2.6rem; color: rgba(77,168,218,.07); position: absolute; top: 12px; right: 18px; line-height: 1; }
.card-ic { width: 46px; height: 46px; background: rgba(77,168,218,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.3rem; transition: all .3s; }
.card:hover .card-ic { background: var(--lb); transform: scale(1.08); }
.card h3 { font-family: var(--fh); font-weight: 700; font-size: 1.1rem; color: var(--wh); margin-bottom: 8px; }
.card > p { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.tags span { padding: 3px 9px; border: 1px solid rgba(77,168,218,.2); border-radius: 14px; font-family: var(--fh); font-size: .62rem; color: var(--lb); letter-spacing: 1px; text-transform: uppercase; }
.card ul { display: flex; flex-direction: column; gap: 4px; }
.card li { font-size: .75rem; color: rgba(255,255,255,.3); padding-left: 12px; position: relative; }
.card li::before { content: '▸'; position: absolute; left: 0; color: var(--lb); }

/* ═══════ WHY ═══════ */
.why-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 44px; align-items: start; }
.why-left { display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; gap: 16px; padding: 18px; border-radius: 9px; transition: all .3s; }
.why-item:hover { background: var(--lg); transform: translateX(5px); }
.why-nr { font-family: var(--fd); font-size: 1.8rem; color: var(--lb); min-width: 40px; }
.why-item h4 { font-family: var(--fh); font-weight: 700; font-size: .95rem; color: var(--db); margin-bottom: 3px; }
.why-item p { font-size: .82rem; color: var(--gy); line-height: 1.5; }
.cert-box { background: var(--db); border-radius: 12px; padding: 36px 30px; color: var(--wh); }
.cert-box h3 { font-family: var(--fd); font-size: 1.6rem; margin-bottom: 4px; }
.cert-sub { color: rgba(255,255,255,.4); font-size: .82rem; margin-bottom: 24px; }
.cert-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.cert-row:last-child { border-bottom: none; }
.cert-ic { width: 38px; height: 38px; min-width: 38px; background: rgba(77,168,218,.1); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.cert-row strong { display: block; font-family: var(--fh); font-weight: 700; font-size: .9rem; }
.cert-row span { font-size: .72rem; color: rgba(255,255,255,.35); }

/* ═══════ PROCESS ═══════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: var(--mg); }
.step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--wh); border: 3px solid var(--lb); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: var(--fd); font-size: 1rem; color: var(--lb); transition: all .3s; box-shadow: 0 2px 10px rgba(77,168,218,.12); }
.step:hover .step-dot { background: var(--lb); color: var(--wh); transform: scale(1.1); }
.step h4 { font-family: var(--fh); font-weight: 700; font-size: .95rem; color: var(--db); margin-bottom: 5px; }
.step p { font-size: .8rem; color: var(--gy); }

/* ═══════ CONTACT ═══════ */
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 40px; }
.contact-left { display: flex; flex-direction: column; gap: 16px; }
.ct { display: flex; gap: 14px; padding: 16px; border-radius: 9px; transition: background .3s; }
.ct:hover { background: var(--lg); }
.ct-ic { width: 42px; height: 42px; min-width: 42px; background: var(--db); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all .3s; }
.ct:hover .ct-ic { background: var(--lb); }
.ct strong { display: block; font-family: var(--fh); font-weight: 700; font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gy); margin-bottom: 2px; }
.ct p { font-size: .92rem; color: var(--db); font-weight: 500; }
.ct a { color: var(--db); transition: color .3s; }
.ct a:hover { color: var(--lb); }
.contact-form { background: var(--lg); border-radius: 12px; padding: 32px; }
.contact-form h3 { font-family: var(--fd); font-size: 1.5rem; color: var(--db); margin-bottom: 18px; }
.fg { margin-bottom: 12px; }
.fg label { display: block; font-family: var(--fh); font-weight: 600; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gy); margin-bottom: 4px; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 9px 12px; border: 2px solid var(--mg); border-radius: 6px; font-family: var(--fb); font-size: .9rem; color: var(--bk); background: var(--wh); outline: none; transition: border .3s; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--lb); }
.fg textarea { resize: vertical; min-height: 90px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ═══════ MAP ═══════ */
.map-wrap { background: var(--db); position: relative; }
.map-info { position: absolute; top: 0; left: 0; z-index: 2; background: var(--db); padding: 32px; max-width: 340px; }
.map-info h3 { font-family: var(--fd); font-size: 1.3rem; color: var(--wh); margin-bottom: 8px; }
.map-info p { color: rgba(255,255,255,.4); font-size: .82rem; }
.map-frame { width: 100%; height: 340px; border: none; filter: grayscale(40%); opacity: .75; display: block; }

/* ═══════ FOOTER ═══════ */
.footer { background: var(--bk); padding: 44px 0 0; }
.footer::before { content: ''; display: block; height: 3px; background: linear-gradient(90deg, var(--lb) 0%, var(--rd) 30%, transparent 30%); margin-bottom: 44px; }
.ft-row { display: grid; grid-template-columns: 2fr 1fr 1.3fr; gap: 32px; padding-bottom: 32px; }
.ft-brand p { color: rgba(255,255,255,.3); font-size: .82rem; line-height: 1.6; }
.ft-tag { font-family: var(--fh); font-size: .7rem; color: var(--lb); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.footer h4 { font-family: var(--fh); font-weight: 700; font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--wh); margin-bottom: 14px; }
.ft-nav a { display: block; color: rgba(255,255,255,.3); font-size: .82rem; padding: 3px 0; transition: color .3s, transform .3s; }
.ft-nav a:hover { color: var(--lb); transform: translateX(4px); }
.ft-contact p { color: rgba(255,255,255,.3); font-size: .8rem; padding: 3px 0; line-height: 1.5; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 14px 0; text-align: center; color: rgba(255,255,255,.18); font-size: .72rem; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps::before { display: none; }
  .ft-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(26,26,26,.97); flex-direction: column; align-items: center; justify-content: center; gap: 22px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row .stat { padding: 20px 12px; }
  .about-row, .contact-row { grid-template-columns: 1fr; }
  .feat-grid, .form-2col { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ft-row { grid-template-columns: 1fr; }
  .map-info { position: relative; max-width: 100%; }
}

/* ═══════ MOBILE PHONE ═══════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .hero { min-height: 100svh; }
  .hero-title { font-size: 2.8rem; }
  .hero-tagline { font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
  .hero-desc { font-size: .88rem; margin-bottom: 24px; }
  .hero-badge { font-size: .65rem; padding: 4px 10px; margin-bottom: 14px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .nav-logo { height: 50px !important; }
  .nav .container { padding: 0 12px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat { padding: 16px 8px; }
  .stat-val { font-size: 1.6rem; }
  .stat-lbl { font-size: .6rem; letter-spacing: 1px; }
  .sec-title { font-size: 1.8rem; }
  .sec-text { font-size: .88rem; }
  .sec-label { font-size: .65rem; letter-spacing: 2px; }
  .about-visual { aspect-ratio: 16/9; padding: 16px; }
  .about-logo { width: 220px; }
  .about-badge { position: relative; bottom: auto; right: auto; margin-top: 12px; display: inline-flex; gap: 10px; align-items: center; }
  .about-badge strong { font-size: 1.4rem; }
  .feat-grid { gap: 8px; margin-top: 18px; }
  .feat { padding: 10px 8px; }
  .cards { gap: 14px; margin-top: 30px; }
  .card { padding: 24px 18px; }
  .card h3 { font-size: 1rem; }
  .card > p { font-size: .78rem; }
  .tags span { font-size: .58rem; }
  .card li { font-size: .72rem; }
  .why-row { gap: 24px; margin-top: 30px; }
  .why-item { padding: 14px; gap: 12px; }
  .why-nr { font-size: 1.4rem; min-width: 30px; }
  .cert-box { padding: 26px 20px; }
  .cert-box h3 { font-size: 1.3rem; }
  .steps { gap: 20px; margin-top: 30px; }
  .step-dot { width: 34px; height: 34px; font-size: .85rem; }
  .contact-row { gap: 24px; margin-top: 24px; }
  .ct { padding: 12px; }
  .ct-ic { width: 36px; height: 36px; min-width: 36px; font-size: .95rem; }
  .contact-form { padding: 22px 16px; }
  .map-frame { height: 240px; }
  .ft-row { gap: 24px; }
  .ft-brand p { font-size: .76rem; }
  /* Robot smaller on mobile */
  #robot { transform: scale(.75); transform-origin: bottom right; }
  /* Touch-friendly: bigger tap targets */
  .btn { min-height: 48px; }
  .fg input, .fg textarea, .fg select { min-height: 44px; font-size: 16px; /* prevents zoom on iOS */ }
  .lang-btn { padding: 6px 10px; }
  .lang-opt { padding: 10px 14px; }
  .nav-toggle { padding: 8px; }
  .nav-toggle span { width: 28px; height: 2.5px; }
  /* Game touch hint */
  .game-touch-hint { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 5015; font-family: 'Barlow Condensed',sans-serif; font-size: .85rem; color: rgba(255,255,255,.5); text-align: center; pointer-events: none; animation: fadeHint 3s ease forwards; }
  @keyframes fadeHint { 0%,70%{opacity:1} 100%{opacity:0} }
}

/* ═══════ ROBOT FIRE PARTICLES ═══════ */
@keyframes rFireDrop {
  0% { opacity: .9; transform: translateY(0) scale(1); }
  50% { opacity: .65; }
  100% { opacity: 0; transform: translateY(14px) scale(.1); }
}
.rnote {
  position: absolute;
  pointer-events: none;
  font-size: 14px;
  animation: noteFloat 2s ease-out forwards;
}
@keyframes noteFloat {
  0% { opacity: .9; transform: translateY(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(-40px) rotate(20deg); }
}
/* Game touch hint (mobile) */
.game-touch-hint { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 5015; font-family: 'Barlow Condensed',sans-serif; font-size: .9rem; color: rgba(255,255,255,.6); text-align: center; pointer-events: none; padding: 8px 20px; background: rgba(0,0,0,.4); border-radius: 8px; animation: fadeHint 4s ease forwards; white-space: nowrap; }
@keyframes fadeHint { 0%,60%{opacity:1} 100%{opacity:0;visibility:hidden} }
/* Mobile body class tweaks */
.is-mobile { -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; }
.is-mobile #robot { transform-origin: center center; }
.is-mobile .hero-btns .btn { min-height: 52px; font-size: .95rem; }
