/* ===========================
   NICKTIO DESIGN SYSTEM
   Converted from Tailwind CSS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  --n-primary: #068b45;
  --n-secondary: #2596be;
  --n-danger: #dc3545;
  --n-danger-text: #ff3c78;
  --n-green: #3cd278;
  --n-grey: #8e8e8e;
  --n-muted: #547593;
  --n-midnight: #102d47;
  --n-border: #dfebfc;
  --n-hero-bg: #f3f9fd;
  --n-foottext: #668199;
  --n-search: #163858;
  --n-dark-b: #1b2c44;
  --n-font: 'Inter', sans-serif;
  --n-container-xl: 1300px;
  --n-transition: all 0.3s ease;
}

/* === RESET FOR NICKTIO SECTIONS === */
.nicktio-page *,
.nicktio-page *::before,
.nicktio-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nicktio-page, #apus-main-content {
  font-family: var(--n-font);
  color: var(--n-midnight);
  overflow-x: hidden;
  line-height: 1.6;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.nicktio-page a {
  text-decoration: none;
  transition: var(--n-transition);
}

.nicktio-page img {
  max-width: 100%;
  height: auto;
}

/* === CONTAINER === */
.n-container {
  width: 100%;
  max-width: var(--n-container-xl);
  margin: 0 auto;
  padding: 0 1rem;
}

/* === BUTTONS === */
.n-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: var(--n-primary) !important;
  color: #fff !important;
  padding: 0.75rem 2rem !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  border: 1px solid var(--n-primary) !important;
  cursor: pointer !important;
  transition: var(--n-transition) !important;
}
.n-btn-primary:hover {
  background: transparent !important;
  color: var(--n-primary) !important;
}

.n-btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: var(--n-secondary) !important;
  color: #fff !important;
  padding: 0.75rem 2rem !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  border: 1px solid var(--n-secondary) !important;
  cursor: pointer !important;
  transition: var(--n-transition) !important;
}
.n-btn-secondary:hover {
  background: transparent !important;
  color: var(--n-secondary) !important;
}

.n-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--n-primary);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--n-primary);
  cursor: pointer;
  transition: var(--n-transition);
}
.n-btn-outline:hover {
  background: var(--n-primary);
  color: #fff;
}

.n-btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--n-secondary);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--n-secondary);
  cursor: pointer;
  transition: var(--n-transition);
}
.n-btn-secondary-outline:hover {
  background: var(--n-secondary);
  color: #fff;
}

.n-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--n-muted);
  font-size: 1rem;
  transition: var(--n-transition);
}
.n-btn-text:hover {
  color: var(--n-primary);
}

/* === ARROW ICON === */
.n-arrow {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ==============================
   HEADER
   ============================== */
.n-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 96px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.n-header.sticky {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.n-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.n-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--n-primary);
}

.n-logo img {
  height: 36px;
  width: auto;
}

.n-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.n-nav a {
  color: var(--n-midnight);
  font-size: 1rem;
  font-weight: 500;
}
.n-nav a:hover { color: var(--n-primary); }

.n-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.n-btn-signin {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--n-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--n-primary);
  transition: var(--n-transition);
}
.n-btn-signin:hover {
  background: transparent;
  color: var(--n-primary);
}

.n-btn-signup {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--n-primary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--n-primary);
  transition: var(--n-transition);
}
.n-btn-signup:hover {
  background: var(--n-primary);
  color: #fff;
}

@media (min-width: 1024px) {
  .n-btn-signin, .n-btn-signup { display: flex; }
}

/* Mobile toggle */
.n-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.n-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--n-midnight);
  border-radius: 2px;
  transition: var(--n-transition);
}

@media (min-width: 1024px) {
  .n-menu-toggle { display: none; }
  .n-nav { display: flex; }
}

@media (max-width: 1023px) {
  .n-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    gap: 1rem;
  }
  .n-nav.open { display: flex; }
  .n-mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--n-midnight);
  }
  .n-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1rem;
  }
  .n-mobile-buttons .n-btn-signin,
  .n-mobile-buttons .n-btn-signup {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .n-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }
  .n-nav-overlay.open { display: block; }
}

/* ==============================
   HERO SECTION
   ============================== */
.n-hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 3rem;
  overflow: hidden;
}

.n-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--n-hero-bg);
  border-radius: 0 0 0 119px;
  z-index: 0;
}

.n-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .n-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.n-hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--n-midnight);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .n-hero-title { font-size: 2.5rem; } }
@media (min-width: 768px) { .n-hero-title { font-size: 3.125rem; } }

.n-hero-title .highlight {
  background: var(--n-border);
  color: var(--n-primary);
  border-radius: 0.5rem;
  padding: 0 0.25rem;
}

.n-hero-desc {
  color: var(--n-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.n-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.n-hero-trusted {
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .n-hero-trusted { margin-top: 7rem; }
}

.n-hero-trusted p {
  font-size: 1.25rem;
  color: var(--n-muted);
  margin-bottom: 1.75rem;
}

.n-hero-trusted-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.n-hero-trusted-logos img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.n-hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .n-hero-image {
    display: block;
    padding-left: 5rem;
  }
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

.n-hero-content { animation: fadeInLeft 0.6s ease forwards; }
.n-hero-image { animation: fadeInRight 0.6s ease forwards; }

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-down.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   PAYMENT SECTION
   ============================== */
.n-payment {
  padding: 3.5rem 0;
}

.n-payment-header {
  text-align: center;
  padding: 0 3rem;
}

.n-payment-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--n-midnight);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .n-payment-header h2 { font-size: 1.75rem; } }
@media (min-width: 768px) { .n-payment-header h2 { font-size: 2.1875rem; } }

.n-payment-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1rem;
}

.n-payment-tab {
  color: var(--n-muted);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}
.n-payment-tab:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.25rem;
  top: 0.125rem;
  width: 2px;
  height: 75%;
  background: var(--n-muted);
  border-radius: 9999px;
}

.n-payment-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 5rem;
}

@media (min-width: 640px) {
  .n-payment-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .n-payment-cards { grid-template-columns: repeat(3, 1fr); }
}

.n-payment-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.n-payment-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.n-payment-card-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--n-midnight);
  margin: 1rem 0;
}

.n-payment-card-desc {
  color: var(--n-muted);
  font-size: 1rem;
}

/* ==============================
   BENEFIT SECTION
   ============================== */
.n-benefit {
  padding: 3.5rem 0;
  overflow-x: hidden;
}

.n-benefit-box {
  background: var(--n-hero-bg);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 640px) { .n-benefit-box { padding: 5rem 3.5rem; } }
@media (min-width: 1280px) { .n-benefit-box { padding: 5rem 5rem 5rem 5rem; } }

.n-benefit-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--n-midnight);
}
@media (min-width: 640px) { .n-benefit-box h2 { font-size: 1.75rem; } }
@media (min-width: 768px) { .n-benefit-box h2 { font-size: 2.1875rem; } }

.n-benefit-box h2 .highlight {
  background: var(--n-border);
  color: var(--n-primary);
  border-radius: 0.5rem;
  padding: 0 0.25rem;
  margin-left: 0.5rem;
}

.n-benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
}

@media (min-width: 1280px) {
  .n-benefit-grid { grid-template-columns: 1fr 1fr; }
}

.n-benefit-img { display: none; }
@media (min-width: 640px) { .n-benefit-img { display: block; } }

.n-benefit-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--n-midnight);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .n-benefit-subtitle { font-size: 1.5625rem; } }

.n-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.n-benefit-item img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.n-benefit-item p {
  color: var(--n-muted);
  font-size: 1.0625rem;
}

/* ==============================
   SPEND SECTION
   ============================== */
.n-spend {
  padding: 3.5rem 0;
  overflow: hidden;
}

.n-spend-header {
  text-align: center;
  margin-bottom: 2rem;
}

.n-spend-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--n-midnight);
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .n-spend-header h2 { font-size: 1.75rem; } }
@media (min-width: 768px) { .n-spend-header h2 { font-size: 2.1875rem; } }

.n-spend-header p {
  color: var(--n-muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

.n-spend-video {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.n-spend-video img {
  border-radius: 0.5rem;
  width: 100%;
  max-width: 550px;
}

.n-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--n-transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  color: var(--n-midnight);
  z-index: 1;
}

.n-play-btn:hover { color: var(--n-primary); transform: translate(-50%, -50%) scale(1.1); }

.n-play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Video Modal */
.n-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.n-modal-overlay.open { display: flex; }

.n-modal {
  background: #fff;
  border-radius: 0.75rem;
  width: 90%;
  max-width: 650px;
  overflow: hidden;
}

.n-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--n-border);
}

.n-modal-header h3 {
  color: var(--n-midnight);
  font-size: 1.1rem;
  font-weight: 600;
}

.n-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  font-size: 1.2rem;
  color: var(--n-midnight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.n-modal iframe {
  width: 100%;
  height: 380px;
  display: block;
  padding: 1rem;
}

/* ==============================
   METHOD SECTION
   ============================== */
.n-method {
  padding: 3.5rem 0;
  overflow: hidden;
}

.n-method-box {
  background: var(--n-hero-bg);
  border-radius: 1.5rem;
  padding: 4rem 1.25rem;
}
@media (min-width: 640px) { .n-method-box { padding: 4rem 5rem; } }

.n-method-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.n-method-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--n-midnight);
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .n-method-header h2 { font-size: 1.75rem; } }
@media (min-width: 768px) { .n-method-header h2 { font-size: 2.1875rem; } }

.n-method-header p {
  color: var(--n-muted);
  font-size: 1.0625rem;
  max-width: 45%;
  margin: 0 auto;
}
@media (max-width: 768px) { .n-method-header p { max-width: 100%; } }

.n-method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.n-method-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.n-method-card-content {
  padding: 2rem 2.25rem;
}

.n-method-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--n-midnight);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .n-method-card h3 { font-size: 1.5625rem; } }

.n-method-card p {
  color: var(--n-muted);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.n-method-card a {
  color: var(--n-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.n-method-card a:hover { color: #1451a4; }

.n-method-card-full {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1280px) {
  .n-method-card-full { grid-template-columns: 1fr 1fr; }
}

.n-method-card-full img {
  width: 100%;
  object-fit: cover;
}

.n-method-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .n-method-two-col { grid-template-columns: 1fr 1fr; }
}

.n-method-side {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 0.25rem;
}

.n-method-side .n-method-card-content {
  flex: 1;
}

.n-method-side img {
  display: none;
  width: 232px;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 640px) { .n-method-side img { display: block; } }

.n-method-bottom {
  display: flex;
  flex-direction: column;
}

.n-method-bottom img {
  width: 100%;
  object-fit: cover;
}

/* ==============================
   MOBILE SECTION
   ============================== */
.n-mobile {
  padding: 3.5rem 0;
  overflow: hidden;
}

.n-mobile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .n-mobile-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.n-mobile-grid h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--n-midnight);
}
@media (min-width: 1024px) { .n-mobile-grid h2 { font-size: 2.1875rem; } }

.n-mobile-grid h2 span { color: var(--n-primary); }

.n-mobile-desc {
  color: var(--n-muted);
  font-size: 1rem;
  margin-top: 1.5rem;
  max-width: 75%;
}
@media (min-width: 1024px) { .n-mobile-desc { max-width: 100%; } }

.n-perks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
}

.n-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.n-perk-dot {
  width: 24px;
  height: 24px;
  background: var(--n-primary);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.n-perk-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.n-perk-item p { color: var(--n-muted); font-size: 1rem; }

.n-mobile-img {
  max-width: 75%;
  margin: 0 auto;
}
@media (min-width: 1024px) { .n-mobile-img { max-width: 100%; } }

/* ==============================
   SEARCH (CTA) SECTION
   ============================== */
.n-search {
  padding: 3.5rem 0;
  overflow: hidden;
}

.n-search-box {
  background: var(--n-hero-bg);
  border-radius: 1.5rem;
  padding: 0.5rem;
}

.n-search-top {
  text-align: center;
  padding: 5rem 1rem 2rem;
}

.n-search-top img {
  margin: 0 auto 1rem;
  display: block;
}

.n-search-top h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--n-midnight);
}
@media (min-width: 640px) { .n-search-top h2 { font-size: 1.75rem; } }
@media (min-width: 768px) { .n-search-top h2 { font-size: 2.1875rem; } }

.n-search-top h2 span { color: var(--n-primary); }

.n-email-form {
  max-width: 75%;
  margin: 1.5rem auto 0;
}
@media (max-width: 768px) { .n-email-form { max-width: 100%; } }

.n-email-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  flex-direction: column;
}
@media (min-width: 640px) { .n-email-input-wrap { flex-direction: row; } }

.n-email-input-wrap input {
  flex: 1;
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  color: var(--n-midnight);
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

.n-email-input-wrap input::placeholder {
  color: var(--n-muted);
}

.n-email-input-wrap .n-btn-primary {
  margin: 0.5rem;
  white-space: nowrap;
  width: calc(100% - 1rem);
}
@media (min-width: 640px) {
  .n-email-input-wrap .n-btn-primary { width: auto; }
}

.n-search-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.n-search-note-dot {
  width: 20px;
  height: 20px;
  background: var(--n-primary);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.n-search-note-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.n-search-note p {
  color: var(--n-muted);
  font-size: 1.0625rem;
}

/* Review Card */
.n-review-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 4rem 1.5rem;
  margin: 0.5rem;
}

@media (min-width: 640px) { .n-review-card { padding: 4rem 3rem; } }
@media (min-width: 1024px) { .n-review-card { padding: 4rem 6rem; } }

.n-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 1024px) { .n-review-grid { grid-template-columns: 1fr 1fr; } }

.n-quote-img { margin-bottom: 2.5rem; }

.n-review-text {
  color: var(--n-midnight);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.n-reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.n-reviewer img { border-radius: 50%; width: 64px; height: 64px; object-fit: cover; }

.n-reviewer-name { font-weight: 500; color: var(--n-midnight); font-size: 1rem; }
.n-reviewer-post { color: var(--n-muted); font-size: 1rem; }

.n-ratings {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
}
@media (min-width: 640px) { .n-ratings { flex-direction: row; align-items: center; } }
@media (min-width: 1024px) { .n-ratings { justify-content: space-around; } }

.n-stars { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.n-star {
  width: 20px;
  height: 20px;
  color: #f59e0b;
}
.n-star svg { fill: currentColor; width: 100%; height: 100%; }

.n-rating-score { font-size: 1rem; color: var(--n-muted); }
.n-rating-score strong { color: var(--n-midnight); font-weight: 700; }

.n-store-badge { margin-top: 0.75rem; }
.n-store-badge img { height: 44px; width: auto; }

/* ==============================
   PRICING SECTION
   ============================== */
.n-pricing {
  padding: 3.5rem 0;
  overflow: hidden;
}

.n-pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.n-pricing-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--n-midnight);
}
@media (min-width: 640px) { .n-pricing-header h2 { font-size: 1.75rem; } }
@media (min-width: 768px) { .n-pricing-header h2 { font-size: 2.1875rem; } }

.n-pricing-header p {
  color: var(--n-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.n-pricing-toggle {
  text-align: center;
  margin-bottom: 1.5rem;
}

.n-toggle-wrap {
  display: inline-flex;
  align-items: center;
  background: var(--n-hero-bg);
  border-radius: 0.5rem;
  padding: 0.5rem;
  gap: 0.25rem;
}

.n-toggle-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 0.375rem;
  font-size: 1.0625rem;
  font-weight: 400;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--n-midnight);
  transition: var(--n-transition);
}

.n-toggle-btn.active {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.n-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  margin-top: 3rem;
}
@media (min-width: 768px) { .n-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .n-pricing-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.n-pricing-labels {
  padding-bottom: 1rem;
}

.n-pricing-label-row {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--n-border);
  color: var(--n-muted);
  font-size: 1.0625rem;
}
.n-pricing-label-row:last-child { border-bottom: none; }

.n-pricing-col {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: 0.5rem;
  padding: 2rem 2rem 0.5rem;
}

.n-pricing-col h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--n-midnight);
  text-align: center;
  margin-bottom: 1rem;
}

.n-pricing-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.n-pricing-amount {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--n-midnight);
}

.n-pricing-duration {
  color: var(--n-midnight);
  font-size: 1rem;
}

.n-btn-green {
  display: block;
  text-align: center;
  background: var(--n-green);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.0625rem;
  border: 2px solid var(--n-green);
  transition: var(--n-transition);
  margin-bottom: 2.25rem;
}
.n-btn-green:hover {
  background: transparent;
  color: var(--n-green);
}

.n-pricing-row {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--n-border);
  text-align: center;
  color: var(--n-muted);
  font-size: 0.95rem;
}
.n-pricing-row:last-child { border-bottom: none; }

.n-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--n-primary);
  border-radius: 50%;
  margin: 0 auto;
}
.n-check::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.n-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--n-danger);
  border-radius: 50%;
  margin: 0 auto;
  color: #fff;
  font-size: 0.8rem;
}

/* ==============================
   SOLUTION SECTION
   ============================== */
.n-solution {
  padding: 3.5rem 0;
  overflow: hidden;
}

.n-solution-box {
  background: var(--n-hero-bg);
  border-radius: 1.5rem;
  padding: 3rem 1rem;
}
@media (min-width: 1024px) { .n-solution-box { padding: 3rem 4rem; } }

.n-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .n-solution-grid { grid-template-columns: 1fr 1fr; }
}

.n-solution-grid h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--n-midnight);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .n-solution-grid h2 { font-size: 1.75rem; } }
@media (min-width: 768px) { .n-solution-grid h2 { font-size: 2.1875rem; } }

.n-solution-grid h2 span { color: var(--n-primary); margin-left: 0.5rem; }

.n-solution-grid p {
  color: var(--n-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 75%;
}
@media (min-width: 1024px) { .n-solution-grid p { max-width: 100%; } }

.n-solution-img { display: flex; justify-content: center; }
.n-solution-img img { max-width: 100%; }

/* ==============================
   FOOTER
   ============================== */
.n-footer {
  background: var(--n-midnight);
  padding-top: 2rem;
  position: relative;
}

.n-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid var(--n-dark-b);
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .n-footer-top { flex-direction: row; align-items: center; }
}

.n-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.n-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--n-foottext);
  font-size: 1rem;
}

.n-footer-contact-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.n-footer-contact-item a {
  color: var(--n-foottext);
}
.n-footer-contact-item a:hover { color: var(--n-primary); }

.n-footer-social {
  display: flex;
  gap: 1rem;
}

.n-footer-social a {
  color: var(--n-muted);
  display: flex;
  align-items: center;
}
.n-footer-social a:hover { color: var(--n-primary); }

.n-footer-social svg {
  width: 32px;
  height: 32px;
}

.n-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .n-footer-grid { grid-template-columns: repeat(4, 1fr) 5fr; }
}

.n-footer-col h4 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.n-footer-col ul { list-style: none; }
.n-footer-col ul li { margin-bottom: 0.75rem; }
.n-footer-col ul li a {
  color: var(--n-foottext);
  font-size: 1rem;
}
.n-footer-col ul li a:hover { color: var(--n-primary); }

.n-footer-newsletter h4 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}

.n-footer-newsletter-form {
  position: relative;
  margin-top: 2rem;
}

.n-footer-newsletter-form input {
  width: 100%;
  background: var(--n-search);
  color: #fff;
  padding: 0.75rem 3rem 0.75rem 1.25rem;
  border: 1px solid var(--n-search);
  border-radius: 0.375rem;
  outline: none;
  font-size: 1rem;
}
.n-footer-newsletter-form input::placeholder { color: var(--n-foottext); }
.n-footer-newsletter-form input:focus { border-color: var(--n-primary); }

.n-footer-newsletter-form svg {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--n-foottext);
  width: 22px;
  height: 22px;
}

.n-footer-app { margin-top: 3rem; }
.n-footer-app h4 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.n-footer-app-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.n-footer-app-badges img { height: 40px; width: auto; }

.n-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--n-dark-b);
}
@media (min-width: 640px) { .n-footer-bottom { flex-direction: row; } }

.n-footer-bottom p {
  color: var(--n-foottext);
  font-size: 1rem;
}

.n-footer-bottom a:hover { color: var(--n-primary); }

.n-footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.n-footer-bottom-links a {
  color: var(--n-foottext);
  font-size: 1rem;
}
.n-footer-bottom-links a:hover { color: var(--n-primary); }

/* ==============================
   PRIMARY COLOR TEXT/SECTION
   ============================== */
.n-text-primary { color: var(--n-primary) !important; }
.n-text-muted { color: var(--n-muted) !important; }

/* Scroll padding for sticky header */
html { scroll-padding-top: 100px; }
