/* FinSuite Web — corsuite.cz */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --teal:        #0d9488;
  --teal-light:  #14b8a6;
  --teal-dark:   #0f766e;
  --teal-xdark:  #134e4a;
  --green:       #10b981;
  --bg:          #f0fdf9;
  --surface:     #ffffff;
  --surface2:    #f8fffe;
  --border:      #ccfbf1;
  --text:        #0f172a;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 4px 24px rgba(13,148,136,.10);
  --shadow-lg:   0 12px 48px rgba(13,148,136,.16);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-family: var(--font-body);
  font-size: 15px; font-weight: 500; text-decoration: none;
  cursor: pointer; border: none; transition: all .22s ease;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 4px 16px rgba(13,148,136,.35); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,.4); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--teal-dark); font-weight: 600; }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGES ── */
.badge {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(13,148,136,.1); color: var(--teal-dark);
}

/* ── TYPOGRAPHY ── */
.section-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.2; }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 560px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(240,253,249,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 18px;
}
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--text); }
.logo-text span { color: var(--teal); }
.navbar-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.navbar-nav a { text-decoration: none; color: var(--text-muted); font-size: 15px; padding: 8px 16px; border-radius: 8px; transition: all .2s; }
.navbar-nav a:hover, .navbar-nav a.active { color: var(--teal); background: rgba(13,148,136,.07); }
.navbar-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero { padding: 140px 0 100px; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% -10%, rgba(13,148,136,.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 5% 95%, rgba(16,185,129,.08) 0%, transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 20px; }
.hero-title { font-family: var(--font-head); font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1; margin-bottom: 22px; }
.hero-title .accent { color: var(--teal); }
.hero-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--teal-dark); }
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* Hero mockup */
.hero-visual { position: relative; }
.hero-mockup {
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border); overflow: hidden;
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transition: transform .4s ease;
}
.hero-mockup:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.mockup-bar { background: var(--teal-xdark); padding: 10px 16px; display: flex; align-items: center; gap: 6px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-body { display: grid; grid-template-columns: 160px 1fr; min-height: 340px; }
.mockup-sidebar { background: var(--teal-xdark); padding: 16px 10px; display: flex; flex-direction: column; gap: 4px; }
.mockup-nav-item { padding: 8px 10px; border-radius: 8px; font-size: 11px; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 7px; }
.mockup-nav-item.active { background: rgba(20,184,166,.3); color: #fff; }
.mockup-content { padding: 18px; background: #f8fffe; }
.mockup-content-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.mockup-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.mockup-card { background: #fff; border-radius: 10px; padding: 12px; border: 1px solid var(--border); }
.mockup-card-val { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--teal-dark); }
.mockup-card-lbl { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.mockup-rows { display: flex; flex-direction: column; gap: 6px; }
.mockup-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; padding: 7px 8px; background: #fff; border-radius: 8px; border: 1px solid #f1f5f9; font-size: 11px; }
.mockup-row-label { color: var(--text-muted); }
.mockup-row-amount { font-weight: 600; color: var(--teal-dark); }
.tag { display: inline-block; padding: 2px 8px; border-radius: 50px; font-size: 10px; font-weight: 600; }
.tag-green { background: #dcfce7; color: #16a34a; }
.tag-yellow { background: #fef9c3; color: #ca8a04; }

/* ── FEATURES ── */
.features { padding: 100px 0; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 16px auto 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border); transition: all .3s ease; position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transform: scaleX(0); transition: transform .3s ease; transform-origin: left;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(13,148,136,.3); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(16,185,129,.1)); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.feature-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── SCREENSHOTS ── */
.screenshots { padding: 100px 0; background: var(--surface2); }
.screenshots-header { text-align: center; margin-bottom: 56px; }
.screenshots-header .section-sub { margin: 16px auto 0; }
.screenshots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.screenshot-card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: all .3s ease; }
.screenshot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.screenshot-img { width: 100%; height: 220px; object-fit: cover; display: block; background: linear-gradient(135deg, var(--teal-xdark) 0%, var(--teal) 100%); }
.screenshot-img-placeholder { width: 100%; height: 220px; background: linear-gradient(135deg, var(--teal-xdark), var(--teal-dark)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,.4); font-size: 13px; }
.screenshot-label { padding: 14px 20px; font-size: 14px; font-weight: 500; color: var(--text-muted); }

/* ── PRICING ── */
.pricing { padding: 100px 0; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-sub { margin: 16px auto 0; }
.pricing-note { font-size: 14px; color: var(--text-muted); margin-top: 12px; }
.pricing-saas-banner {
  background: linear-gradient(135deg, var(--teal-xdark), var(--teal-dark));
  border-radius: var(--radius-lg); padding: 24px 32px; margin-bottom: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  color: #fff;
}
.pricing-saas-banner h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.pricing-saas-banner p { font-size: 14px; opacity: .8; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: var(--surface); border-radius: var(--radius-lg); padding: 36px 32px; border: 2px solid var(--border); position: relative; transition: all .3s ease; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,148,136,.08), var(--shadow); }
.pricing-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff; padding: 4px 20px; border-radius: 50px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.pricing-plan { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 8px; }
.pricing-price { font-family: var(--font-head); font-size: 44px; font-weight: 800; color: var(--text); line-height: 1; display: flex; align-items: flex-start; gap: 2px; }
.pricing-price sup { font-size: 20px; margin-top: 8px; }
.pricing-period { font-size: 13px; color: var(--text-muted); margin-top: 6px; margin-bottom: 4px; }
.pricing-firms { display: inline-block; font-size: 13px; font-weight: 600; color: var(--teal-dark); background: rgba(13,148,136,.08); padding: 3px 10px; border-radius: 50px; margin-bottom: 16px; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 0; margin: 0 24px 80px;
  background: linear-gradient(135deg, var(--teal-xdark) 0%, var(--teal-dark) 100%);
  border-radius: 32px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(16,185,129,.15) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-desc { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--teal-xdark); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 14px; margin-top: 12px; line-height: 1.6; opacity: .7; }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { text-decoration: none; color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; opacity: .6; }

/* ── CONTACT PAGE ── */
.page-hero { padding: 120px 0 64px; text-align: center; position: relative; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(13,148,136,.1) 0%, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-title { margin-bottom: 16px; }
.page-hero .section-sub { margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 64px 0 100px; align-items: start; }
.contact-info h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(16,185,129,.1)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); font-weight: 600; margin-bottom: 4px; }
.contact-item-value { font-size: 15px; font-weight: 500; color: var(--text); }

/* ── FORMS ── */
.form-card { background: var(--surface); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-label .required { color: var(--teal); margin-left: 2px; }
.form-control {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 2px solid var(--border); background: var(--bg);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,148,136,.1); background: #fff; }
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.form-success {
  display: none; background: #dcfce7; border: 1px solid #bbf7d0;
  border-radius: var(--radius); padding: 16px 20px; font-size: 14px;
  color: #166534; margin-top: 16px; align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-error {
  display: none; background: #fee2e2; border: 1px solid #fecaca;
  border-radius: var(--radius); padding: 16px 20px; font-size: 14px;
  color: #991b1b; margin-top: 16px;
}
.form-error.show { display: block; }

/* ── REGISTRATION PAGE ── */
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 64px 0 100px; align-items: start; }
.reg-info { position: sticky; top: 100px; }
.reg-info h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.reg-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.plan-summary { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; background: var(--surface); border-radius: var(--radius); border: 2px solid var(--border); cursor: pointer; transition: all .2s; }
.plan-item:hover, .plan-item.selected { border-color: var(--teal); background: rgba(13,148,136,.04); }
.plan-item.selected .plan-radio { background: var(--teal); border-color: var(--teal); }
.plan-item.selected .plan-radio::after { opacity: 1; }
.plan-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); position: relative; flex-shrink: 0; transition: all .2s; }
.plan-radio::after { content: ''; position: absolute; top: 3px; left: 3px; right: 3px; bottom: 3px; border-radius: 50%; background: #fff; opacity: 0; transition: opacity .2s; }
.plan-name { font-weight: 600; font-size: 15px; }
.plan-firms { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.plan-price { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--teal-dark); }
.qr-section { background: var(--surface); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); display: none; }
.qr-section.show { display: block; }
.qr-section h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.qr-placeholder { width: 160px; height: 160px; background: var(--bg); border: 2px dashed var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-muted); margin: 0 auto 16px; text-align: center; }
.bank-details { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.bank-details strong { color: var(--text); }

/* ── FINSUITE PAGE ── */
.app-overview { padding: 80px 0; }
.app-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.app-overview-title { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.app-overview-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.app-highlights { display: flex; flex-direction: column; gap: 16px; }
.app-highlight { display: flex; align-items: flex-start; gap: 14px; }
.app-highlight-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(16,185,129,.12)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.app-highlight-title { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.app-highlight-desc { font-size: 13px; color: var(--text-muted); }

/* ── RESPONSIVE ── */
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .app-overview-grid, .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshots-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .contact-grid, .reg-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 60px; }
  .hero-visual { display: none; }
  .hero-mockup { transform: none; }
  .pricing-saas-banner { flex-direction: column; text-align: center; }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 48px; }
  .hero-title { font-size: 32px; line-height: 1.15; }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; padding-top: 24px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 11px; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 15px; }
  .cta-section { margin: 0 0 60px; border-radius: 0; padding: 56px 0; }
  .cta-title { font-size: 26px; }
  .cta-desc { font-size: 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .features { padding: 64px 0; }
  .features-header { margin-bottom: 40px; }
  .feature-card { padding: 24px; }
  .screenshots { padding: 64px 0; }
  .pricing { padding: 64px 0; }
  .pricing-card { padding: 28px 24px; }
  .pricing-price { font-size: 36px; }
  .page-hero { padding: 100px 0 48px; }
  .contact-grid { padding: 40px 0 64px; }
  .form-card { padding: 24px; }
  .reg-grid { padding: 40px 0 64px; }
  .footer { padding: 48px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Mobile navbar menu */
  .navbar-nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(240,253,249,.97);
    padding: 16px 24px 24px;
    border-bottom: 1px solid #ccfbf1;
    box-shadow: 0 8px 24px rgba(13,148,136,.1);
    z-index: 99;
  }
  .navbar-nav.mobile-open a { padding: 12px 16px; font-size: 16px; }
}
