/* 
 * Kyran Digital - Main Stylesheet
 * Brand Colors: 
 *   - Kyran Green: #11676a (Teal/Forest-Green accent)
 *   - Kyran Beige: #bb9a7c (Warm, elegant sand beige)
 */

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

/* --- Design Tokens & CSS Variables --- */
:root {
  /* Colors */
  --kyran-green: #11676a;
  --kyran-green-rgb: 17, 103, 106;
  --kyran-green-light: #167e82;
  --kyran-green-dark: #0c4e50;
  
  --kyran-beige: #bb9a7c;
  --kyran-beige-rgb: 187, 154, 124;
  --kyran-beige-light: #c8ad94;
  --kyran-beige-dark: #a27f60;

  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #f1f5f9;
  
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --border-color: #e2e8f0;
  --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 20px 40px -15px rgba(17, 103, 106, 0.12);
  --glass-shadow: 0 8px 32px 0 rgba(17, 103, 106, 0.04);
  
  /* Typography */
  --font-headers: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Borders & Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headers);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--white);
  color: var(--kyran-green);
  border-color: var(--kyran-green);
}

.btn-primary:hover {
  background-color: rgba(17, 103, 106, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 103, 106, 0.1);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--kyran-green);
  border-color: var(--kyran-green);
}

.btn-secondary:hover {
  background-color: rgba(17, 103, 106, 0.05);
  transform: translateY(-2px);
}

.btn-beige {
  background-color: var(--kyran-beige);
  color: var(--white);
}

.btn-beige:hover {
  background-color: var(--kyran-beige-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(187, 154, 124, 0.25);
}

.btn-text {
  color: var(--kyran-green);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

.btn-text:hover {
  background-color: rgba(17, 103, 106, 0.05);
  color: var(--kyran-green-light);
}

/* --- Layout Components --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--bg-light);
}

.section-bg-dark {
  background-color: var(--kyran-green-dark);
  color: var(--white);
}

.section-bg-dark h2, 
.section-bg-dark h3, 
.section-bg-dark p {
  color: var(--white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Responsive Grid Media Queries */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* NFC Solutions grid layout alignment override to stretch card heights */
#page-nfc-solutions .grid-2,
#page-nfc-solutions .grid-3,
#page-nfc-solutions .grid-4,
.nfc-solutions .grid-2,
.nfc-solutions .grid-3,
.nfc-solutions .grid-4,
#panel-nfc .grid-2,
#panel-nfc .grid-3,
#panel-nfc .grid-4 {
  align-items: stretch;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  color: var(--text-dark);
}

/* Gradient spans for modern headings */
.section-header h2 span,
.reveal h2 span,
.nfc-teaser h2 span,
.grid-2 h2 span,
.grid-3 h2 span,
.pricing-tabs-container + h3 span {
  background: linear-gradient(135deg, var(--kyran-green) 30%, var(--kyran-beige) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  color: var(--kyran-beige);
  font-family: var(--font-headers);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92); /* White header background with blur */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  height: 65px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background-color: rgba(255, 255, 255, 0.98); /* Solid white on scroll */
}

.header .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  height: auto;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.header.scrolled .logo-img {
  height: 32px;
}

.nav-menu {
  display: none;
  align-items: center;
  list-style: none;
  gap: 2rem;
  height: 100%;
}

.nav-link {
  font-family: var(--font-headers);
  font-weight: 500;
  color: var(--kyran-green); /* Kyran Green text on white header */
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--kyran-beige); /* Beige highlight bar on hover */
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--kyran-beige); /* Beige text on hover */
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--kyran-beige); /* Beige text for active state */
  font-weight: 600;
}

.header-cta {
  display: none;
}

/* Hamburger Menu button */
.hamburger {
  display: block; /* Restore hamburger menu icon in mobile view */
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  width: 30px;
  height: 20px;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--kyran-green); /* Green lines for white header visibility */
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
  background-color: var(--kyran-green);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
  background-color: var(--kyran-green);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  padding: 2rem;
}

.mobile-nav.open {
  transform: translateX(0);
}

/* Close button in mobile drawer */
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  z-index: 1200;
}

.mobile-nav-close:hover {
  background-color: var(--border-color);
  color: var(--kyran-green);
  transform: rotate(90deg);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  font-family: var(--font-headers);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-nav-link.active {
  color: var(--kyran-green);
}

/* --- PC vs Mobile Device Navigation Control --- */
/* For PC/Laptop (Regardless of Window Size / Minimization) */
body.device-pc .nav-menu {
  display: flex !important;
}

body.device-pc .hamburger {
  display: none !important;
}

body.device-pc .mobile-nav {
  display: none !important;
}

body.device-pc .header-cta {
  display: block;
}

/* Adjustments for smaller PC window sizes (prevent menu wrapping) */
@media (max-width: 991px) {
  body.device-pc .nav-menu {
    gap: 1.25rem;
  }
  body.device-pc .nav-link {
    font-size: 0.85rem;
  }
  body.device-pc .header-cta {
    display: none !important; /* Hide CTA button on narrow PC windows to make room */
  }
}

@media (max-width: 650px) {
  body.device-pc .nav-menu {
    gap: 0.75rem;
  }
  body.device-pc .nav-link {
    font-size: 0.75rem;
  }
}

/* For Mobile Devices (Regardless of Screen Width) */
body.device-mobile .nav-menu {
  display: none !important; /* Hide top bar navigation links */
}

body.device-mobile .hamburger {
  display: block !important; /* Always show hamburger toggle on mobile */
}

body.device-mobile .header-cta {
  display: none !important; /* Hide header CTA button on mobile */
}

/* Responsive Desktop Headers (Fallback if JS is disabled/fails) */
@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
  .header-cta {
    display: block;
  }
  .hamburger {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
}

/* --- SPA Router Pages Styling --- */
main {
  margin-top: var(--header-height);
  position: relative;
  width: 100%;
}

.page-section {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 100%;
}

.page-section.active {
  display: block;
  animation: pageFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pageFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- HOME PAGE SECTIONS --- */

.hero {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 90% 10%, rgba(187, 154, 124, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(17, 103, 106, 0.04) 0%, transparent 50%),
              #fafaf9; /* Stone-white modern background */
}

/* Floating animated background blobs for modern creative agency layout */
.hero::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(187, 154, 124, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  top: -50px;
  right: 5%;
  z-index: 1;
  pointer-events: none;
  animation: floatLargeLogo 22s infinite alternate ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(17, 103, 106, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -100px;
  left: -5%;
  z-index: 1;
  pointer-events: none;
  animation: floatLargeLogo 28s infinite alternate-reverse ease-in-out;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  color: var(--kyran-beige);
  font-family: var(--font-headers);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  border-left: 3px solid var(--kyran-green);
  padding-left: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--kyran-green) 20%, var(--kyran-beige) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  display: none !important;
  content: none !important;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-img-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-large {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(17, 103, 106, 0.12));
}

@keyframes morphShape {
  0% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; }
  100% { border-radius: 70% 30% 50% 50% / 50% 60% 40% 60%; }
}

@keyframes floatLargeLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Stats Section */
.stats {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
  background-color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-headers);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--kyran-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(17, 103, 106, 0.03);
  border: 1px solid rgba(17, 103, 106, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(17, 103, 106, 0.08), 0 0 0 1px rgba(187, 154, 124, 0.15);
  border-color: rgba(187, 154, 124, 0.25);
}

.card:hover::before {
  background-color: var(--kyran-beige);
}

/* Service Highlights / Cards */
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: rgba(17, 103, 106, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--kyran-green);
  font-size: 1.5rem;
  transition: var(--transition);
}

.card:hover .service-card-icon {
  background-color: var(--kyran-green);
  color: var(--white);
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--kyran-green);
  font-weight: 600;
  font-size: 0.95rem;
  gap: 0.5rem;
  margin-top: 1rem;
}

.card-link svg {
  transition: var(--transition);
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* NFC Teaser */
.nfc-teaser {
  background: linear-gradient(135deg, rgba(17, 103, 106, 0.03) 0%, rgba(187, 154, 124, 0.05) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .nfc-teaser {
    padding: 5rem;
  }
}

.teaser-badge {
  background-color: var(--kyran-green);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-family: var(--font-headers);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Testimonials Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 3.5rem 3rem 3rem 3rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(17, 103, 106, 0.06);
  box-shadow: 0 15px 35px rgba(17, 103, 106, 0.04);
}

/* Styled modern quote icon */
.testimonial-box::before {
  content: '“';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  font-family: var(--font-headers);
  line-height: 1;
  color: var(--kyran-beige);
  opacity: 0.15;
  height: 40px;
}

.testimonial-quote {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-stars {
  color: var(--kyran-beige);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-author-name {
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--kyran-green);
}

.testimonial-author-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--kyran-green);
  width: 24px;
  border-radius: 5px;
}

/* --- ABOUT US PAGE SECTIONS --- */
.culture-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillars-img-box {
  aspect-ratio: auto;
  border: none;
  box-shadow: none;
  background: transparent;
}

.pillars-img {
  object-fit: contain;
  height: auto;
}

.culture-logo-watermark {
  position: absolute;
  opacity: 0.08;
  width: 50%;
  height: auto;
  pointer-events: none;
}

.team-grid {
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(17, 103, 106, 0.08);
  color: var(--kyran-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: var(--font-headers);
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 3px solid var(--kyran-beige);
}

.team-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.team-role {
  color: var(--kyran-beige);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* --- SERVICES PAGE SECTIONS --- */
.filters-container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-dark);
  font-family: var(--font-headers);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--kyran-green);
  color: var(--kyran-green);
}

.filter-btn.active {
  background-color: var(--kyran-green);
  border-color: var(--kyran-green);
  color: var(--white);
}

/* Services items classes for dynamic animation filtering */
.service-item-wrapper {
  transition: opacity 0.4s ease, transform 0.4s ease, display 0.4s ease allow-discrete;
}

.service-item-wrapper.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.9);
}

.tech-tag {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background-color: rgba(187, 154, 124, 0.1);
  color: var(--kyran-beige-dark);
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* --- NFC SOLUTIONS PAGE SECTIONS --- */
.nfc-product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--kyran-beige);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* Step slider styles */
.slider-container {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  margin-top: 3rem;
}

.slider-navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.slider-tab-btn {
  background: none;
  border: none;
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  font-family: var(--font-headers);
  color: var(--text-light);
  transition: var(--transition);
}

.slider-tab-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--border-color);
  color: var(--text-muted);
  font-weight: 700;
  margin: 0 auto 0.75rem auto;
  transition: var(--transition);
}

.slider-tab-btn.active {
  color: var(--kyran-green);
}

.slider-tab-btn.active .slider-tab-number {
  background-color: var(--kyran-green);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(17, 103, 106, 0.15);
}

.slider-tab-title {
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
}

.slider-content {
  position: relative;
}

.slider-pane {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.slider-pane.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  animation: paneFadeIn 0.5s ease forwards;
}

@media (min-width: 768px) {
  .slider-pane.active {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes paneFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slider-image-holder {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(17, 103, 106, 0.1);
  overflow: hidden;
}

/* --- NFC Step-by-Step Vector Animations --- */

/* Step 1: Program & Personalize */
.step1-line-1 {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: writeLine1 4s infinite ease-in-out;
}
.step1-line-2 {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: writeLine2 4s infinite ease-in-out 0.6s;
}
.step1-line-3 {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: writeLine3 4s infinite ease-in-out 1.2s;
}
.step1-transfer-line {
  stroke-dasharray: 5;
  animation: flowDashes 2s infinite linear;
}
.step1-card-waves {
  animation: pulseWaves 2s infinite ease-in-out;
}

@keyframes writeLine1 {
  0% { stroke-dashoffset: 100; opacity: 0; }
  15%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes writeLine2 {
  0% { stroke-dashoffset: 180; opacity: 0; }
  20%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes writeLine3 {
  0% { stroke-dashoffset: 140; opacity: 0; }
  25%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes flowDashes {
  to {
    stroke-dashoffset: -20;
  }
}
@keyframes pulseWaves {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Step 2: Hover or Tap */
.step2-card {
  transform-origin: 85px 115px;
  animation: hoverCardSlide 4s infinite ease-in-out;
}
.step2-phone {
  transform-origin: 220px 105px;
  animation: vibratorPhoneSignal 4s infinite ease-in-out;
}
.step2-wave-1 {
  transform-origin: 140px 50px;
  animation: emitNfcWave1 4s infinite ease-in-out;
}
.step2-wave-2 {
  transform-origin: 140px 45px;
  animation: emitNfcWave2 4s infinite ease-in-out;
}

@keyframes hoverCardSlide {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  35%, 80% { transform: translateX(42px) rotate(4deg); }
}
@keyframes vibratorPhoneSignal {
  0%, 45%, 82%, 100% { transform: rotate(0deg); }
  48%, 56%, 64%, 72% { transform: rotate(0.8deg) translateY(-0.5px); }
  52%, 60%, 68%, 76% { transform: rotate(-0.8deg) translateY(0.5px); }
}
@keyframes emitNfcWave1 {
  0%, 38%, 85%, 100% { opacity: 0; transform: scale(0.85); }
  48%, 78% { opacity: 1; transform: scale(1.08); }
}
@keyframes emitNfcWave2 {
  0%, 44%, 85%, 100% { opacity: 0; transform: scale(0.85); }
  54%, 78% { opacity: 0.8; transform: scale(1.08); }
}

/* Step 3: Instantly Connect */
.step3-banner {
  animation: slideBannerNotification 4s infinite ease-in-out;
}
.step3-success-ring {
  transform-origin: 150px 85px;
  animation: bounceRingIn 4s infinite cubic-bezier(0.175, 0.885, 0.32, 1.25);
}
.step3-checkmark {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawSuccessCheckmark 4s infinite ease-in-out;
}
.step3-ui-line-1 {
  animation: revealUiBar1 4s infinite ease-in-out;
}
.step3-ui-line-2 {
  animation: revealUiBar2 4s infinite ease-in-out;
}

@keyframes slideBannerNotification {
  0%, 100% { transform: translateY(-35px); opacity: 0; }
  12%, 85% { transform: translateY(0); opacity: 1; }
}
@keyframes bounceRingIn {
  0%, 20%, 100% { transform: scale(0); opacity: 0; }
  30%, 85% { transform: scale(1); opacity: 1; }
}
@keyframes drawSuccessCheckmark {
  0%, 30%, 100% { stroke-dashoffset: 40; }
  45%, 85% { stroke-dashoffset: 0; }
}
@keyframes revealUiBar1 {
  0%, 45%, 100% { transform: scaleX(0); transform-origin: center; opacity: 0; }
  55%, 85% { transform: scaleX(1); transform-origin: center; opacity: 1; }
}
@keyframes revealUiBar2 {
  0%, 50%, 100% { transform: scaleX(0); transform-origin: center; opacity: 0; }
  60%, 85% { transform: scaleX(1); transform-origin: center; opacity: 1; }
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-text-holder h3 {
  color: var(--kyran-green);
  margin-bottom: 1.25rem;
}

/* --- PRODUCTS & PLANS PAGE SECTIONS --- */
.toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.toggle-label {
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.toggle-label.active {
  color: var(--kyran-green);
}

.price-switcher {
  position: relative;
  width: 60px;
  height: 32px;
  background-color: rgba(17, 103, 106, 0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.price-switcher-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--kyran-green);
  transition: var(--transition);
}

.price-switcher.active .price-switcher-knob {
  left: calc(100% - 28px);
}

.discount-badge {
  background-color: rgba(187, 154, 124, 0.15);
  color: var(--kyran-beige-dark);
  font-size: 0.75rem;
  font-family: var(--font-headers);
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.card.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid var(--kyran-green);
  overflow: visible;
}

.card.pricing-card.featured {
  border: 2px solid var(--kyran-green);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(17, 103, 106, 0.12);
}

.card.pricing-card:hover, .card.pricing-card.featured:hover {
  border-color: var(--kyran-green-light) !important;
}


.price-box {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
}

.price-currency {
  font-family: var(--font-headers);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  align-self: flex-start;
  margin-top: 0.25rem;
}

.price-amount {
  font-family: var(--font-headers);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-left: 0.25rem;
}

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

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-feature-item svg {
  color: var(--kyran-green);
  flex-shrink: 0;
}

.pricing-feature-item.disabled {
  color: var(--text-light);
  text-decoration: line-through;
}

.pricing-feature-item.disabled svg {
  color: var(--text-light);
}

/* --- Service-Specific Pricing Tabs & Product Cards --- */
.pricing-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
  width: 100%;
}

.pricing-tabs-list {
  display: flex;
  background-color: var(--bg-light);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  gap: 0.35rem;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}

.pricing-tabs-list::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.pricing-tab-btn {
  background: none;
  border: none;
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pricing-tab-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  transition: var(--transition);
}

.pricing-tab-btn:hover {
  color: var(--kyran-green);
}

.pricing-tab-btn.active {
  background-color: var(--kyran-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(17, 103, 106, 0.2);
}

/* Responsive Pricing Tabs */
@media (max-width: 991px) {
  .pricing-tabs-list {
    padding: 0.35rem;
    gap: 0.25rem;
  }
  
  .pricing-tab-btn {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    gap: 4px;
  }

  .pricing-tab-btn svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .pricing-tabs-container {
    margin-bottom: 2.5rem;
  }
  
  .pricing-tabs-list {
    padding: 0.3rem;
    gap: 0.2rem;
  }

  .pricing-tab-btn {
    font-size: 0.775rem;
    padding: 0.4rem 0.75rem;
    gap: 4px;
  }

  .pricing-tab-btn svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 576px) {
  .pricing-tabs-list {
    padding: 0.25rem;
    gap: 0.15rem;
  }

  .pricing-tab-btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
    gap: 3px;
  }

  .pricing-tab-btn svg {
    width: 12px;
    height: 12px;
  }
}

/* Pricing Panels */
.pricing-panels-container {
  width: 100%;
  position: relative;
  min-height: 480px;
}

.pricing-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pricing-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Individual Product Cards */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.25rem;
  position: relative;
  border: 2px solid var(--kyran-green);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
  border-color: var(--kyran-green-light);
}

.product-card.featured {
  border: 2px solid var(--kyran-green);
  box-shadow: var(--hover-shadow);
}

.product-card.featured:hover {
  border-color: var(--kyran-green-light);
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-headers);
  line-height: 1.2;
  text-align: left;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-shrink: 0;
  min-height: 2.7rem;
  height: auto;
}

.product-price-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background-color: var(--bg-light);
  padding: 1rem 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.product-price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  line-height: 1.3;
  gap: 4px;
}

.product-price-type {
  color: var(--text-muted);
  font-weight: 500;
  flex: 1;
  min-width: 80px;
  text-align: left;
}

.product-price-val {
  font-family: var(--font-headers);
  font-weight: 700;
  color: var(--text-dark);
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
}

.product-price-val small {
  font-size: 0.725rem;
  font-weight: 500;
  color: var(--text-light);
}

.product-features-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--kyran-green);
  margin-bottom: 0.75rem;
  text-align: left;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.product-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  background-color: var(--kyran-green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
}

.product-btn {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

/* Bundled Suite Container adjustments */
.bundles-container {
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 4rem;
  margin-top: 4rem;
}

/* FAQ Accordions */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-headers);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-icon-holder {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kyran-green);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-muted);
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: rgba(17, 103, 106, 0.3);
  box-shadow: 0 4px 15px rgba(17, 103, 106, 0.04);
}

.faq-item.active .faq-icon-holder {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust if needed */
  padding-bottom: 1.25rem;
}

/* --- CONTACT PAGE SECTIONS --- */
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(187, 154, 124, 0.12);
  color: var(--kyran-beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-link-inline {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-link-inline:hover {
  color: var(--kyran-green);
}

/* Form Styles */
.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Label logic for dynamic floating effect */
.form-label {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  color: var(--text-light);
  transition: var(--transition);
  pointer-events: none;
  font-family: var(--font-headers);
}

.form-input:focus, 
.form-input:not(:placeholder-shown) {
  background-color: var(--white);
  border-color: var(--kyran-green);
  box-shadow: 0 0 0 3px rgba(17, 103, 106, 0.1);
}

/* Float label above when active */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.6rem;
  left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--kyran-green);
  background-color: var(--white);
  padding: 0 0.4rem;
  border-radius: 4px;
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.error ~ .form-label {
  color: #ef4444;
}

.error-message {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 0.4rem;
  display: block;
}

.form-feedback {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: none;
  font-family: var(--font-headers);
  font-weight: 500;
  text-align: center;
}

.form-feedback.success {
  display: block;
  background-color: rgba(17, 103, 106, 0.1);
  color: var(--kyran-green-dark);
  border: 1px solid var(--kyran-green);
}

.form-feedback.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-prefill-notice {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  background-color: rgba(17, 103, 106, 0.08);
  border: 1px solid var(--kyran-green);
  border-left: 4px solid var(--kyran-green);
}

.form-prefill-notice .prefill-text {
  color: var(--kyran-green-dark);
  font-family: var(--font-headers);
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.form-prefill-notice .prefill-subtext {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Styled Map Container */
.map-container {
  height: 250px;
  background-color: var(--bg-section);
  border-radius: var(--radius-md);
  margin-top: 2rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-background-watermark {
  opacity: 0.05;
  width: 60%;
  height: auto;
}

.map-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: var(--white);
  padding: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  max-width: 250px;
}

.map-card h4 {
  color: var(--kyran-green);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.map-card p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

/* --- PRIVACY & TERMS PAGE SECTIONS --- */
.policy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .policy-layout {
    grid-template-columns: 280px 1fr;
  }
}

.policy-toc {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.policy-toc-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--kyran-green);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.policy-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-toc-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.policy-toc-link:hover {
  color: var(--kyran-green);
  padding-left: 4px;
}

.policy-content-box h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--kyran-green);
}

.policy-content-box h2:first-of-type {
  margin-top: 0;
}

.policy-content-box ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.policy-content-box li {
  margin-bottom: 0.5rem;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--kyran-green);
  color: #e2e8f0;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-headers);
}

.footer p {
  color: #e2e8f0;
  font-size: 0.95rem;
}

.footer-logo-desc {
  max-width: 280px;
}

.footer-logo-img {
  height: 42px;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #e2e8f0;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--kyran-beige);
  padding-left: 4px;
}

.footer-contact-link {
  color: #e2e8f0;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--kyran-beige);
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-icon:hover {
  background-color: var(--kyran-beige);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.85rem;
}

/* --- SCROLL REVEAL ANIMATIONS (PROGRESSIVE ENHANCEMENT OR OBSERVER) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Scroll timeline support check */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes revealIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .scroll-driven-reveal {
      animation: revealIn linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
    }
  }
}

/* Product image hover transitions */
.slider-image-holder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-image-holder:hover img {
  transform: scale(1.06);
}

/* Clickable NFC product card hover effects */
.nfc-product-card-clickable {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nfc-product-card-clickable:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(9, 34, 35, 0.08);
}

.nfc-product-card-clickable:hover h4 {
  color: var(--kyran-green) !important;
}

.nfc-product-card-clickable:hover .view-details-link {
  text-decoration: underline;
}

/* Modal overlay styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 34, 35, 0.75);
  backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Content Box */
.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(9, 34, 35, 0.25);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2.5rem;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background-color: var(--kyran-green);
  color: var(--white);
  transform: rotate(90deg);
}

/* Grid layout for columns */
.modal-body-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .modal-body-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .modal-content {
    padding: 1.5rem;
  }
}

/* Image preview section */
.modal-preview-holder {
  background-color: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.25rem;
  /* Webkit rounded corner overflow fixes */
  isolation: isolate;
  transform: translate3d(0, 0, 0);
}

.modal-preview-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Option thumbnails */
.modal-thumbnails-grid {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.modal-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-color);
  overflow: hidden;
  cursor: pointer;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  /* Webkit rounded corner overflow fixes */
  isolation: isolate;
  transform: translate3d(0, 0, 0);
}

.modal-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-thumb.active, .modal-thumb:hover {
  border-color: var(--kyran-green);
  transform: scale(1.05);
}

/* Info Column */
.modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--kyran-green);
  background-color: rgba(17, 103, 106, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

#modal-title {
  color: var(--text-dark);
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.modal-price-box {
  font-family: var(--font-headers);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kyran-green);
  margin-bottom: 1.25rem;
}

.modal-description-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

/* Modal details tabs */
.modal-details-tabs {
  margin-bottom: 2rem;
}

.modal-tab-headers {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
  gap: 1rem;
}

.modal-tab-btn {
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.modal-tab-btn:hover, .modal-tab-btn.active {
  color: var(--kyran-green);
}

.modal-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--kyran-green);
}

.modal-tab-pane {
  display: none;
}

.modal-tab-pane.active {
  display: block;
}

/* Bullet list inside tab */
.modal-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.modal-bullet-list li {
  font-size: 0.85rem;
  color: var(--text-medium);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.modal-bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--kyran-green);
  font-weight: bold;
}

.modal-actions {
  display: flex;
  margin-top: 1.5rem;
}

/* ==========================================================================
   12. NFC Products Image Responsiveness & Aspect Ratios
   ========================================================================== */

/* Overrides for catalog brochure container heights on mobile */
/* NFC Catalog Brochures */
.nfc-brochure-holder {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--border-color);
}

.nfc-brochure-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bleeds perfectly to the borders since the aspect ratio matches */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nfc-brochure-holder:hover img {
  transform: scale(1.04);
}

/* Aspect ratio rules for brochures */
.nfc-brochure-holder.cards-brochure {
  aspect-ratio: 1 / 1;
  max-width: 280px;
  height: auto;
}

.nfc-brochure-holder.standees-brochure {
  aspect-ratio: 0.81 / 1;
  max-width: 227px;
  height: auto;
}

@media (min-width: 576px) {
  .nfc-brochure-holder.cards-brochure {
    max-width: 320px;
  }
  .nfc-brochure-holder.standees-brochure {
    max-width: 260px;
  }
}

@media (min-width: 992px) {
  .nfc-brochure-holder.cards-brochure {
    height: 340px;
    width: 340px;
    max-width: none;
  }
  .nfc-brochure-holder.standees-brochure {
    height: 340px;
    width: 275px;
    max-width: none;
  }
}

/* Responsive pricing card image holder for NFC Cards (4 Varieties) */
.nfc-card-image-holder {
  width: 100%;
  aspect-ratio: 4 / 3; /* Uniform horizontal aspect ratio */
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  /* Webkit rounded corner overflow fixes */
  isolation: isolate;
  transform: translate3d(0, 0, 0);
}

.nfc-card-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bleed card mockup textures edge-to-edge with no white borders */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nfc-card-image-holder:hover img {
  transform: scale(1.05);
}

/* Responsive pricing card image holder for NFC Standees */
.nfc-standee-image-holder {
  width: 100%;
  aspect-ratio: 3 / 4; /* Representing a perfect 768x1024 frame */
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
  /* Webkit rounded corner overflow fixes */
  isolation: isolate;
  transform: translate3d(0, 0, 0);
}

.nfc-standee-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bleed photographic desks/backgrounds edge-to-edge */
  object-position: center center; /* Safe default centering */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nfc-standee-image-holder:hover img {
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .nfc-standee-image-holder {
    max-height: 440px; /* Restrict height so standees don't get vertically huge in 2-column grids */
    max-width: 330px;  /* Maintain strict 3:4 aspect ratio by capping width proportionally */
  }
}

/* Modal details preview aspect ratio customization */
.modal-preview-holder {
  aspect-ratio: 4 / 3; /* Fallback */
}

.modal-preview-holder.cards-preview {
  aspect-ratio: 4 / 3;
}

.modal-preview-holder.standees-preview {
  aspect-ratio: 3 / 4;
}

.modal-preview-holder.standees-preview img {
  object-position: center center; /* Safe default centering */
}

/* Specialized standee image alignment based on focal point to prevent cropping */
/* Right-aligned standees (Flex) */
[data-nfc-product="standee-flex"] img,
.modal-preview-holder.standees-preview[data-product="standee-flex"] img {
  object-position: right center !important;
}

/* Left-aligned standees (Quick) */
[data-nfc-product="standee-quick"] img,
.modal-preview-holder.standees-preview[data-product="standee-quick"] img {
  object-position: left center !important;
}

/* Center-aligned standees (Social) */
[data-nfc-product="standee-social"] img,
.modal-preview-holder.standees-preview[data-product="standee-social"] img {
  object-position: center center !important;
}

/* Precise file-based object-position calibration for newly updated standee images */
img[src*="tap-to-connect-white"] {
  object-position: 71% center !important;
}
img[src*="tap-to-connect-black"] {
  object-position: 37% center !important;
}
img[src*="instant-connect-white"] {
  object-position: 35% center !important;
}
img[src*="instant-connect-black"] {
  object-position: 46% center !important;
}
img[src*="smart-connect-white"] {
  object-position: 45% center !important;
}
img[src*="smart-connect-black"] {
  object-position: 52% center !important;
}
img[src*="multi-connect-white"] {
  object-position: 55% center !important;
}
img[src*="multi-connect-black"] {
  object-position: 53% center !important;
}
img[src*="prime-connect-white"] {
  object-position: 50% center !important;
}
img[src*="prime-connect-black"] {
  object-position: 41% center !important;
}

/* General responsive media adjustments for all images on small viewports */
@media (max-width: 576px) {
  .slider-image-holder {
    max-height: 220px;
  }
}

/* Services Hub Image Styling & Animations */
.services-hub-container {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 3rem;
  max-width: 600px;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.services-hub-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.services-hub-container img:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 40px -10px rgba(17, 103, 106, 0.15);
}

@media (max-width: 768px) {
  .services-hub-container {
    margin: 1rem auto 2rem;
    max-width: 480px;
  }
}

/* --- "Why Businesses Choose Kyran Digital" Section --- */
.choose-us-wrapper {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  max-width: 1200px;
  margin: 0 auto;
}

.choose-us-header {
  text-align: center;
  margin-bottom: 5rem;
}

.choose-us-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.choose-us-header h2 span {
  color: var(--kyran-green);
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: var(--kyran-green);
  margin: 1.2rem auto 0;
  border-radius: var(--radius-full);
}

.choose-us-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.flow-line {
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(17, 103, 106, 0.25);
  z-index: 1;
}

.flow-line .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--kyran-green);
  border-radius: 50%;
  top: -5px;
  transform: translateX(-50%);
}

.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.flow-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid rgba(17, 103, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.flow-icon {
  color: var(--kyran-green);
  width: 28px;
  height: 28px;
  transition: var(--transition);
}

.flow-step:hover .flow-icon-wrapper {
  background-color: var(--kyran-green);
  border-color: var(--kyran-green);
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(17, 103, 106, 0.2);
}

.flow-step:hover .flow-icon {
  color: var(--white);
}

.flow-step h3 {
  font-size: 1.15rem;
  font-family: var(--font-headers);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.flow-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 190px;
  margin: 0 auto;
}

/* Responsive Styles for Tablet & Mobile (screens under 992px) */
@media (max-width: 991px) {
  .choose-us-wrapper {
    padding: 3rem 2rem;
  }
  
  .choose-us-header {
    margin-bottom: 3.5rem;
  }
  
  .choose-us-header h2 {
    font-size: 1.8rem;
  }
  
  .choose-us-flow {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    padding-left: 1.5rem;
  }
  
  .flow-line {
    top: 20px;
    bottom: 20px;
    left: calc(1.5rem + 44px);
    right: auto;
    width: 2px;
    height: calc(100% - 40px);
    border-top: none;
    border-left: 2px dashed rgba(17, 103, 106, 0.25);
  }
  
  .flow-line .dot {
    display: none; /* Hide dots on vertical mobile layout */
  }
  
  .flow-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0;
    width: 100%;
  }
  
  .flow-icon-wrapper {
    margin-bottom: 0;
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  
  .flow-text-container {
    align-items: flex-start;
    text-align: left;
  }
  
  .flow-step p {
    margin: 0;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .choose-us-wrapper {
    padding: 2.5rem 1.25rem;
  }
  
  .choose-us-flow {
    padding-left: 0.5rem;
  }
  
  .flow-line {
    left: calc(0.5rem + 34px);
  }
  
  .flow-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-right: 1rem;
  }
  
  .flow-icon {
    width: 24px;
    height: 24px;
  }
  
  .flow-step h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .flow-step p {
    font-size: 0.825rem;
  }
}

/* --- New Pricing Section Helpers --- */
.product-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
}

.product-header-row > div:last-child {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.product-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-icon-badge svg {
  width: 18px;
  height: 18px;
}

/* Badge Color Themes */
.badge-theme-green {
  background-color: #e6f4f1;
  color: var(--kyran-green);
}
.badge-theme-blue {
  background-color: #e7f5ff;
  color: #228be6;
}
.badge-theme-purple {
  background-color: #f3f0ff;
  color: #7950f2;
}
.badge-theme-orange {
  background-color: #fff4e6;
  color: #fd7e14;
}
.badge-theme-teal {
  background-color: #e6fcf5;
  color: #0ca678;
}
.badge-theme-pink {
  background-color: #fff0f6;
  color: #d6336c;
}

/* Popular Tag inside Cards */
.card-badge-popular {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #fff9db;
  color: #f59f00;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  margin-top: 0.25rem;
  align-self: flex-start;
  border: 1px solid rgba(245, 159, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-badge-popular svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Grid-5 Helper for SEO & Marketing Tab */
.grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-5 .product-card {
    padding: 2rem 0.85rem;
  }
  .grid-5 .product-card h3 {
    font-size: 1.1rem;
  }
}

/* Ideal For styling inside Bundles */
.ideal-for-title {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--kyran-beige-dark);
  background-color: #faf3e0;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ideal-for-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.ideal-for-list li {
  font-size: 0.85rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 0.75rem;
}

.ideal-for-list li::before {
  content: "•";
  color: var(--kyran-beige);
  position: absolute;
  left: 0;
  font-size: 1rem;
  top: -1px;
}

/* Ad Spend Note */
.ad-spend-note {
  font-size: 0.8rem;
  font-weight: 600;
  color: #c92a2a;
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Featured Badge Top for Bundles */
.featured-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--kyran-green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(17, 103, 106, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-badge-top svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Solid green checkout buttons for Bundled Packages */
.bundle-btn {
  background-color: var(--kyran-green) !important;
  color: var(--white) !important;
  border: 1px solid var(--kyran-green) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: center;
  transition: var(--transition);
}

.bundle-btn:hover {
  background-color: var(--kyran-green-dark) !important;
  border-color: var(--kyran-green-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Optimization for product card action buttons */
.product-card .btn.product-btn {
  padding: 0.7rem 1.25rem;
  font-size: 0.875rem;
  gap: 6px;
  line-height: 1.2;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   13. Secret Admin Portal Styles
   ========================================================================== */
#page-admin {
  background-color: var(--bg-section);
  min-height: 80vh;
}

.admin-login-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  padding: 3rem 2.5rem;
}

.admin-dashboard-container {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.admin-tab-btn {
  background: none;
  border: none;
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.admin-tab-btn:hover {
  color: var(--text-color);
  background-color: rgba(255, 255, 255, 0.02);
}

.admin-tab-btn.active {
  color: var(--text-color) !important;
  background-color: rgba(17, 103, 106, 0.15) !important;
  border: 1px solid rgba(17, 103, 106, 0.3) !important;
}

.admin-tab-pane {
  display: none;
}

.admin-tab-pane.active {
  display: block;
  animation: adminFadeIn 0.4s ease forwards;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, 
.admin-table td {
  border-bottom: 1px solid var(--border-color);
}

.admin-table tbody tr {
  transition: background-color 0.3s ease;
}

.admin-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.01);
}

.admin-table th {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-headers);
  font-weight: 600;
  color: var(--kyran-green-light);
  background-color: rgba(0, 0, 0, 0.1);
}

.admin-table td {
  padding: 1.2rem 1.5rem;
  vertical-align: middle;
}

.admin-table select.form-input {
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-color);
  border-radius: var(--radius-sm);
  padding: 0.4rem 1.8rem 0.4rem 0.6rem;
  font-size: 0.8rem;
  width: auto;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
}

@keyframes adminFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Pricing Page Blur Overlay */
.pricing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: rgba(10, 10, 10, 0.45);
  transition: opacity 0.4s ease;
  pointer-events: none; /* Let pointer events pass to scroll background */
}

.pricing-overlay-card {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  pointer-events: auto; /* Re-enable pointer events for form inputs */
  width: 100%;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(17, 103, 106, 0.1);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: 0 24px 48px rgba(17, 103, 106, 0.15);
  animation: adminFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  
  /* Responsiveness to prevent screen overflow */
  max-height: calc(100vh - var(--header-height) - 3rem);
  overflow-y: auto;
}

/* Custom scrollbar for premium aesthetic */
.pricing-overlay-card::-webkit-scrollbar {
  width: 6px;
}
.pricing-overlay-card::-webkit-scrollbar-track {
  background: transparent;
}
.pricing-overlay-card::-webkit-scrollbar-thumb {
  background: rgba(17, 103, 106, 0.25);
  border-radius: 3px;
}
.pricing-overlay-card::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 103, 106, 0.45);
}

/* Compact layout for inputs inside overlay */
.pricing-overlay-card .form-group {
  margin-bottom: 1.25rem;
}

.pricing-overlay-card .form-input {
  padding: 0.8rem 1.1rem;
}

.pricing-overlay-card .form-label {
  top: 0.8rem;
  left: 1.1rem;
}

.pricing-overlay-card .form-textarea {
  min-height: 80px;
  height: 80px;
}

/* adjust label float position for compact form inputs */
.pricing-overlay-card .form-input:focus ~ .form-label,
.pricing-overlay-card .form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.6rem;
  left: 0.75rem;
}

/* Center position custom dropdown arrow */
.pricing-overlay-card .form-group svg {
  top: 1.05rem !important;
  right: 1.1rem !important;
}

.pricing-content-blur {
  filter: blur(16px);
  -webkit-filter: blur(16px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.4s ease;
}

/* Plan and Product Selection Success Button State */
.selected-btn {
  background-color: #10b981 !important;
  border-color: #10b981 !important;
  color: #ffffff !important;
  pointer-events: none;
}


