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

:root {
  --background: 210 20% 98%;
  --foreground: 220 30% 15%;
  --card: 0 0% 100%;
  --card-foreground: 220 30% 15%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 30% 15%;
  --primary: 210 80% 30%;
  --primary-foreground: 0 0% 100%;
  --secondary: 15 85% 55%;
  --secondary-foreground: 0 0% 100%;
  --muted: 210 20% 94%;
  --muted-foreground: 220 15% 45%;
  --accent: 175 70% 40%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 210 20% 88%;
  --input: 210 20% 88%;
  --ring: 210 80% 30%;
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg, hsl(210 80% 30%) 0%, hsl(175 70% 40%) 100%);
  --gradient-warm: linear-gradient(135deg, hsl(15 85% 55%) 0%, hsl(35 90% 55%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(210 20% 98%) 0%, hsl(210 25% 95%) 100%);
  --shadow-sm: 0 1px 2px hsl(220 30% 15% / 0.05);
  --shadow-md: 0 4px 12px hsl(220 30% 15% / 0.08);
  --shadow-lg: 0 12px 40px hsl(220 30% 15% / 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Layout ── */
.nybk-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.nybk-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* ── Header ── */
.nybk-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--card) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.nybk-header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nybk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nybk-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nybk-logo-text {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  color: hsl(var(--foreground));
}

.nybk-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nybk-nav-link {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
	padding: 7px 0;
}

.nybk-nav-link:hover {
  color: hsl(var(--foreground));
}

.nybk-nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nybk-mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
}

.nybk-mobile-toggle:hover {
  color: hsl(var(--foreground));
}

.nybk-mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Services dropdown */
.nybk-dropdown {
  position: relative;
  padding: 7px 0;
}

.nybk-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.nybk-dropdown-trigger:hover {
  color: hsl(var(--foreground));
}

.nybk-dropdown-trigger svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.nybk-dropdown:hover .nybk-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nybk-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 14rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  z-index: 100;
  margin-top: 2px;
}

.nybk-dropdown:hover .nybk-dropdown-menu {
  display: block;
}

.nybk-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  border-radius: calc(var(--radius) - 4px);
  transition: background-color 0.15s;
}

.nybk-dropdown-item:hover {
  background-color: hsl(var(--muted));
}

/* Mobile menu */
.nybk-mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
}

.nybk-mobile-menu.is-open {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nybk-mobile-services-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nybk-mobile-service-link {
  display: block;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  font-weight: 500;
  padding-left: 0.5rem;
  transition: color 0.2s;
}

.nybk-mobile-service-link:hover {
  color: hsl(var(--foreground));
}

.nybk-mobile-nav-link {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.nybk-mobile-nav-link:hover {
  color: hsl(var(--foreground));
}

/* ── Buttons ── */
.nybk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "DM Sans", system-ui, sans-serif;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.nybk-btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.nybk-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.nybk-btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.nybk-btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
  box-shadow: var(--shadow-md);
}

.nybk-btn-outline {
  border: 2px solid hsl(var(--primary));
  background: transparent;
  color: hsl(var(--primary));
  border-radius: 0.5rem;
}

.nybk-btn-outline:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.nybk-btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.nybk-btn-secondary:hover {
  background-color: hsl(var(--secondary) / 0.9);
  box-shadow: var(--shadow-md);
}

.nybk-btn-sm {
  height: 2.25rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

.nybk-btn-default {
  height: 2.75rem;
  padding: 0 1.5rem;
}

.nybk-btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.nybk-btn-xl {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}

.nybk-btn-full {
  width: 100%;
}

/* ── Gradient text ── */
.nybk-gradient-text {
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Hero Section ── */
.nybk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  overflow: hidden;
}

.nybk-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsl(var(--background)), hsl(var(--background)), hsl(var(--muted) / 0.5));
}

.nybk-hero-shape-1 {
  position: absolute;
  top: 5rem;
  right: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: hsl(var(--primary) / 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.nybk-hero-shape-2 {
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--secondary) / 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.nybk-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.75rem 1.5rem;
}

.nybk-hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.nybk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nybk-hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: hsl(var(--accent));
  border-radius: 50%;
}

.nybk-hero h1 {
  font-size: 2.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.nybk-hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.nybk-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.nybk-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.nybk-hero-trust-item svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
}

.nybk-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nybk-hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nybk-hero-logo-wrap {
  position: relative;
}

.nybk-hero-logo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
  border-radius: 50%;
  transform: scale(1.1);
  filter: blur(16px);
}

.nybk-whale-logo {
  position: relative;
  z-index: 10;
}

.nybk-whale-logo--sm {
  width: 2.5rem;
  height: 2.5rem;
}

.nybk-whale-logo--md {
  width: 3.5rem;
  height: 3.5rem;
}

.nybk-whale-logo--lg {
  width: 5rem;
  height: 5rem;
}

.nybk-whale-logo--xl {
  width: 8rem;
  height: 8rem;
}

@keyframes nybk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.nybk-whale-logo {
  animation: nybk-float 3s ease-in-out infinite;
}

.nybk-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 28rem;
}

.nybk-stat-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.nybk-stat-value {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.nybk-stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ── Services Section ── */
.nybk-services {
  background: hsl(var(--muted) / 0.3);
}

.nybk-section-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.nybk-section-label--accent {
  color: hsl(var(--accent));
}

.nybk-section-label--secondary {
  color: hsl(var(--secondary));
}

.nybk-section-label--primary {
  color: hsl(var(--primary));
}

.nybk-section-heading {
  font-size: 1.675rem;
  color: hsl(var(--foreground));
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.nybk-section-subheading {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.nybk-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.nybk-services-grid {
  display: grid;
  gap: 1.5rem;
}

.nybk-service-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.125rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.nybk-service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: hsl(var(--primary) / 0.2);
}

.nybk-service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s;
}

.nybk-service-card:hover .nybk-service-icon {
  background: hsl(var(--primary) / 0.15);
}

.nybk-service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.nybk-service-card h3 {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.nybk-service-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
}

.nybk-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
  transition: gap 0.2s;
}

.nybk-service-link:hover {
  gap: 0.5rem;
}

.nybk-service-link svg {
  width: 1rem;
  height: 1rem;
}

/* ── Pricing Section ── */
.nybk-pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.nybk-toggle-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  background: hsl(var(--muted));
  padding: 0.375rem;
  border-radius: 20px;
}

.nybk-toggle-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", system-ui, sans-serif;
  transition: all 0.2s;
  color: hsl(var(--muted-foreground));
  background: transparent;
}

.nybk-toggle-btn:hover {
  color: hsl(var(--foreground));
}

.nybk-toggle-btn.is-active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-sm);
}

.nybk-pricing-intro {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.nybk-pricing-intro h3 {
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.nybk-pricing-intro p {
  color: hsl(var(--muted-foreground));
}

.nybk-pricing-intro .nybk-pricing-highlight {
  color: hsl(var(--primary));
  font-weight: 500;
  margin-top: 0.5rem;
}

.nybk-pricing-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.nybk-pricing-grid--monthly {
  grid-template-columns: 1fr;
}

.nybk-pricing-grid--full {
  grid-template-columns: 1fr;
}

.nybk-pricing-card {
  position: relative;
  border-radius: 0.8rem;
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
}

.nybk-pricing-card--featured {
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.nybk-pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.nybk-pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.nybk-pricing-card-header h3 {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.nybk-pricing-card-header .nybk-pricing-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.nybk-pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
}

.nybk-pricing-prefix {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

.nybk-pricing-value {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.25rem;
  color: hsl(var(--foreground));
}

.nybk-pricing-period {
  color: hsl(var(--muted-foreground));
  margin-left: 0.25rem;
  font-size: 0.875rem;
}

.nybk-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nybk-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.nybk-pricing-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsl(var(--accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.nybk-pricing-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(var(--accent));
}

.nybk-pricing-feature span {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.nybk-pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── CTA Section ── */
.nybk-cta {
  background: hsl(var(--muted) / 0.3);
}

.nybk-cta-box {
  max-width: 56rem;
  margin: 0 auto;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.8rem;
  padding: 1.475rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.nybk-cta-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.nybk-cta-box h2 {
  font-size: 1.675rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.nybk-cta-box > p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.nybk-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.nybk-cta-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.nybk-cta-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.nybk-cta-contact-link:hover {
  color: hsl(var(--foreground));
}

.nybk-cta-contact-link svg {
  width: 1rem;
  height: 1rem;
}

/* ── Footer ── */
.nybk-footer {
  padding: 3rem 0;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}

.nybk-footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.nybk-footer-brand {
  grid-column: span 1;
}

.nybk-footer-brand .nybk-logo-link {
  margin-bottom: 1rem;
}

.nybk-footer-brand .nybk-logo-text {
  font-size: 1.125rem;
}

.nybk-footer-brand p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
}

.nybk-footer-col h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.nybk-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nybk-footer-col ul li,
.nybk-footer-col ul li a{
  display: block;
}
.nybk-footer-col a,
.nybk-footer-col button {
  font-size: 14px;
  line-height: 20px;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-align: left;
}

.nybk-footer-col a:hover,
.nybk-footer-col button:hover {
  color: hsl(var(--foreground));
}

.nybk-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.nybk-footer-copyright {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.nybk-footer-social {
  display: flex;
  gap: 1.25rem;
}

.nybk-footer-social a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.nybk-footer-social a:hover {
  color: hsl(var(--foreground));
}

.nybk-footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ── Contact Dialog / Modal ── */
.nybk-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000c;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.nybk-modal-overlay.is-open {
  display: flex;
}

.nybk-modal {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 32rem;
  max-height: 96vh;
  overflow-y: auto;
  padding: 1.125rem;
  position: relative;
}

.nybk-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: color 0.2s;
}

.nybk-modal-close:hover {
  color: hsl(var(--foreground));
}

.nybk-modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nybk-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.nybk-modal-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.nybk-form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.nybk-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nybk-form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.nybk-form-group input,
.nybk-form-group textarea {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--input));
  border-radius: var(--radius);
  background: transparent;
  color: hsl(var(--foreground));
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.nybk-form-group input:focus,
.nybk-form-group textarea:focus {
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.nybk-form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

.nybk-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.nybk-form-footer {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
}

.nybk-form-footer a {
  color: hsl(var(--primary));
}

.nybk-form-footer a:hover {
  text-decoration: underline;
}

/* ── Service Pages ── */
.nybk-service-hero {
  padding-top: 6rem;
  padding-bottom: 3.75rem;
  background: linear-gradient(to bottom, hsl(var(--muted) / 0.5), hsl(var(--background)));
}

.nybk-service-hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.nybk-service-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.nybk-service-hero h1 {
  font-size: 2rem;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.nybk-service-hero p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 1rem;
}

.nybk-service-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* Service content section */
.nybk-service-content {
  padding: 3.75rem 0;
  background: hsl(var(--muted) / 0.3);
}

.nybk-service-content-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.nybk-service-content-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.nybk-service-content h2 {
  font-size: 1.675rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.nybk-service-content > div > p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.nybk-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nybk-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nybk-checklist li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.nybk-checklist li span {
  color: hsl(var(--foreground));
}

.nybk-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.nybk-feature-box {
  background: hsl(var(--card));
  padding: 1.125rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
}

.nybk-feature-box svg {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.nybk-feature-box h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
}

.nybk-feature-box p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Service page CTA */
.nybk-service-cta {
  padding: 3.75rem 0;
}

.nybk-service-cta-box {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.8rem;
  padding: 20px;
}

.nybk-service-cta-box h2 {
  font-size: 1.675rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.nybk-service-cta-box p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

/* ── Pricing Table (Accounting page) ── */
.nybk-pricing-table-section {
  padding: 3.75rem 1rem;
}

.nybk-pricing-table-header {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.nybk-pricing-table-header h2 {
  font-size: 1.675rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.nybk-pricing-table-header p {
  color: hsl(var(--muted-foreground));
}

.nybk-pricing-table-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.nybk-pricing-table-wrap {
  max-width: 42rem;
  margin: 0 auto;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.nybk-pricing-table-title {
  padding: 1rem 1.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.nybk-pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.nybk-pricing-table thead tr {
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.4);
}

.nybk-pricing-table th {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.nybk-pricing-table th:last-child {
  text-align: right;
}

.nybk-pricing-table td {
  padding: 0.75rem 1.5rem;
  color: hsl(var(--foreground));
}

.nybk-pricing-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.nybk-pricing-table tbody tr:nth-child(even) {
  background: hsl(var(--muted) / 0.3);
}

/* ── 404 Page ── */
.nybk-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.nybk-404 h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.nybk-404 p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

/* ── Form placeholder ── */
.nybk-form-placeholder {
  padding: 2rem;
  border: 2px dashed hsl(var(--border));
  border-radius: 0.5rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

.nybk-form-placeholder p:first-child {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.nybk-form-placeholder p:last-child {
  font-size: 0.875rem;
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* GravityForm */
#GravityForm .gfield_label, #GravityForm label {
    font-size: 0.875rem;
    line-height: normal;
    color: #1b2232;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    gap: 2px;
    align-items: flex-start;
    padding: 0;
}
#gform_confirmation_message_1 {
    font-weight: 500;
    background: #fff;
    padding: 10px;
    border-radius: 3px;
    color: #0a1e39;
}
fieldset#field_1_6 .gfield_consent_label {
    position: absolute;
    left: 18px;
    opacity: 0;
}
#GravityForm .gfield_consent_label {
    display: block;
	cursor: pointer;
	    font-size: 14px;
}
#GravityForm .gform_confirmation_message {
    text-align: center;
}
#GravityForm .ginput_container_consent span.gfield_required_text,
#GravityForm .gform_validation_errors,
#GravityForm span.gfield_required span.gfield_required_text,
#GravityForm .validation_message  {
    display: none;
}
#GravityForm span.gfield_required::after{
    content: '*';
}
#gform_fields_1,
#gform_fields_2,
#gform_fields_3{
    gap: 20px;
}
#GravityForm input:not([type=checkbox]), 
#GravityForm textarea {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(var(--input));
    border-radius: var(--radius);
    background: transparent;
    color: #1b2232;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
#GravityForm textarea {
    height: 96px;
    resize: vertical;
    min-block-size: 6rem;
}
#GravityForm input:not([type=checkbox]):focus,
#GravityForm textarea:focus{
	border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}
#GravityForm input::placeholder,
#GravityForm textarea::placeholder{
    color: #64748b;
}
#GravityForm input.gform_button.button {
    width: auto;
    text-align: center;
    margin: 20px 0 0 auto;
    min-height: 36px;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: "DM Sans", system-ui, sans-serif;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    height: 2.75rem;
    padding: 0 1.5rem;
}
#GravityForm input.gform_button.button:hover {
    background-color: hsl(var(--primary) / 0.9);
    box-shadow: var(--shadow-md);
}
#GravityForm .gform_footer.before {
    padding-bottom: 0;
    margin-bottom: 0;
}
#GravityForm .gfield_error input {
    border-color: #c02b0a;
    background-color: #f1e7e4;
}
#GravityForm .gfield_error .gfield_consent_label {
    color: #c02b0a;
}
#GravityForm .gform_footer {
    padding-bottom: 0;
    margin: 0;
}

#gform_ajax_spinner_1,
#gform_ajax_spinner_2,
#gform_ajax_spinner_3{
    position: absolute;
    left: 0;
    right: 0;
	bottom: 10px;
    margin: auto;
}
/* GravityForm */



/* ══════════════════════════════════════
   Responsive — min-width: 640px
   ══════════════════════════════════════ */
@media (min-width: 640px) {
  .nybk-hero-ctas {
    flex-direction: row;
  }
  .nybk-toggle-wrap {
    flex-direction: row;
  }
  .nybk-cta-buttons {
    flex-direction: row;
  }
  .nybk-form-row--2col {
    grid-template-columns: 1fr 1fr;
  }
  .nybk-form-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
  .nybk-service-hero-ctas {
    flex-direction: row;
  }
}

/* ══════════════════════════════════════
   Responsive — min-width: 768px
   ══════════════════════════════════════ */
@media (min-width: 768px) {
  .nybk-service-hero-inner{
    padding: 0 1rem;
  }
  .nybk-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .nybk-checklist{
    margin: 32px 0 0;
    gap: 1rem;
  }
  .nybk-hero-inner {
    padding: 5rem 1.5rem;
  }
  .nybk-cta-box {
    padding: 3.5rem;
    border-radius: 1.5rem;
  }
  .nybk-footer {
    padding: 4rem 1.5rem;
  }
  .nybk-service-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
  .nybk-service-content {
    padding: 5rem 1rem;
  }
  .nybk-service-cta {
    padding: 5rem 1rem;
  }
  .nybk-service-cta-box {
    padding: 3rem;
    border-radius: 1rem;
  }
  .nybk-pricing-table-section {
    padding: 5rem 1rem;
  }
  .nybk-service-card {
    padding: 1.5rem;
  }
  .nybk-stat-card {
    padding: 1rem;
  }
  .nybk-pricing-card {
    padding: 2rem;
    border-radius: 1rem;
  }
  .nybk-feature-box {
    padding: 1.5rem;
  }
  .nybk-modal {
    padding: 1.5rem;
  }
  .nybk-nav-links {
    display: flex;
  }
  .nybk-nav-actions {
    display: flex;
  }
  .nybk-mobile-toggle {
    display: none;
  }
  .nybk-mobile-menu {
    display: none !important;
  }
  .nybk-hero h1 {
    font-size: 3rem;
  }
  .nybk-section-heading {
    font-size: 2.25rem;
  }
  .nybk-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nybk-pricing-grid--monthly {
    grid-template-columns: repeat(2, 1fr);
  }
  .nybk-pricing-grid--full {
    grid-template-columns: repeat(3, 1fr);
  }
  .nybk-cta-box {
    padding: 3.5rem;
    border-radius: 1.5rem;
  }
  .nybk-cta-box h2 {
    font-size: 2.25rem;
  }
  .nybk-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .nybk-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .nybk-service-hero h1 {
    font-size: 3rem;
  }
  .nybk-service-hero p {
    font-size: 1.25rem;
    margin: 0 auto 2rem;
  }
  .nybk-service-content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nybk-service-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
  .nybk-service-cta-box h2 {
    font-size: 2.25rem;
  }
  .nybk-pricing-table-header h2 {
    font-size: 2.25rem;
  }
  .nybk-features-grid{
    grid-template-columns: 1fr 1fr;
  }
  .nybk-section-header{
    margin-bottom: 4rem;
  }
  .nybk-toggle-wrap{
    border-radius: 9999px;
  }
}

/* ══════════════════════════════════════
   Responsive — min-width: 1024px
   ══════════════════════════════════════ */
@media (min-width: 1024px) {
  .nybk-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nybk-hero h1 {
    font-size: 3.75rem;
  }
  .nybk-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nybk-pricing-grid--monthly {
    grid-template-columns: repeat(4, 1fr);
  }
  .nybk-service-hero h1 {
    font-size: 3.75rem;
  }
}

/* ── Animations ── */
@keyframes nybk-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.nybk-animate-fade-in-up {
  animation: nybk-fadeInUp 0.6s ease-out forwards;
}


@media (max-width:480px){
  .nybk-hero-stats{
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
  }
  .nybk-btn-lg,
  .nybk-btn-xl{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nybk-btn{
    white-space: normal;
    text-align: left;
    line-height: 18px;
  }
  .nybk-service-badge,
  .nybk-service-hero h1{
    margin-bottom: 16px;
  }
}