/* ==========================================================================
   FYNORA - Luxury Digital Business Card & Poster
   Design System & Styling
   ========================================================================== */

/* Google Fonts Imports */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Color Palette - Deep Obsidian Dark Theme */
  --bg-deep: #050506;
  --bg-card: #0c0c0f;
  --bg-card-gradient: #0c0c0f;

  /* Metallic Gold Accents */
  --gold-light: #f5e4ab;
  --gold-primary: #d4af37;
  --gold-mid: #c59b27;
  --gold-dark: #aa771c;
  --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --gold-border-gradient: linear-gradient(135deg, rgba(212, 175, 55, 0.6) 0%, rgba(253, 245, 183, 0.2) 40%, rgba(170, 119, 28, 0.5) 100%);

  /* Text Colors */
  --text-white: #ffffff;
  --text-gold-light: #d4af37;
  --text-muted: #8e8e99;
  --terracotta: #c86a4b;

  /* Shadows & Glows */
  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.95);

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-script: 'Alex Brush', cursive;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #090805;
  background-image: 
    radial-gradient(ellipse 90% 60% at 50% -5%, rgba(212, 175, 55, 0.24), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 105%, rgba(170, 119, 28, 0.22), transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(32, 25, 12, 0.95), #060504 100%);
  background-attachment: fixed;
  color: var(--text-white);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
  overflow-x: hidden;
}

/* Ambient Golden Background Layer */
.bg-ambient-glow {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.12), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(170, 119, 28, 0.15), transparent 45%);
}

/* Top Quick Action Navigation Bar */
.action-nav {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 520px;
  gap: 12px;
  margin-bottom: 20px;
}

.brand-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 14, 18, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 14px;
  border-radius: 30px;
}

.nav-brand-chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-gold-light);
  text-transform: uppercase;
}

.nav-brand-chip-divider {
  color: rgba(212, 175, 55, 0.4);
  font-size: 0.8rem;
}

.nav-right {
  display: flex;
  gap: 8px;
}

.nav-btn {
  background: rgba(18, 18, 22, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.nav-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Card Container Main Frame (Continuous Scroll Layout) */
.fynora-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.fynora-card {
  position: relative;
  background: #0b0b0e;
  border-radius: 24px;
  padding: 35px 25px 30px 25px;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.95),
    0 0 35px rgba(212, 175, 55, 0.22),
    0 0 2px 1px rgba(212, 175, 55, 0.5);
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

/* All Cards Displayed in Continuous Vertical Feed */
.card-view {
  display: block;
  opacity: 1;
  transform: none;
}

/* Scroll Reveal: Cards Fade + Rise Into View */
.fynora-card.scroll-reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fynora-card.scroll-reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Inner Sections: Reveal AFTER Card Itself Settles (staggered, no overlap) */
.fynora-card.scroll-reveal .card-header,
.fynora-card.scroll-reveal .showcase-container,
.fynora-card.scroll-reveal .cta-section,
.fynora-card.scroll-reveal .card-footer {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fynora-card.scroll-reveal.in-view .card-header {
  opacity: 1;
  transform: none;
  transition-delay: 0.55s;
}

.fynora-card.scroll-reveal.in-view .showcase-container {
  opacity: 1;
  transform: none;
  transition-delay: 0.68s;
}

.fynora-card.scroll-reveal.in-view .cta-section {
  opacity: 1;
  transform: none;
  transition-delay: 0.81s;
}

.fynora-card.scroll-reveal.in-view .card-footer {
  opacity: 1;
  transform: none;
  transition-delay: 0.94s;
}

@media (prefers-reduced-motion: reduce) {
  .fynora-card.scroll-reveal,
  .fynora-card.scroll-reveal .card-header,
  .fynora-card.scroll-reveal .showcase-container,
  .fynora-card.scroll-reveal .cta-section,
  .fynora-card.scroll-reveal .card-footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Page Preloader
   ========================================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.page-loader-logo-wrap {
  position: relative;
  width: 92px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader-logo-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.loader-logo-path {
  fill: #fff;
  fill-opacity: 0;
  stroke: var(--gold-light);
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.55));
}

.page-loader-logo-svg.draw .loader-logo-path {
  transition: stroke-dashoffset 1.3s cubic-bezier(0.65, 0, 0.35, 1),
              fill-opacity 0.6s ease 1.05s;
  stroke-dashoffset: 0 !important;
  fill-opacity: 1;
}

.page-loader-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo-path {
    stroke: none;
    fill-opacity: 1;
  }
}

/* Inner Subtle Gold Accent Border Line */
.card-inner-border {
  display: none;
}

/* Golden Corner Sparkle Flare */
.corner-sparkle {
  display: none;
}

@keyframes pulseSparkle {
  0% {
    transform: scale(0.85) rotate(0deg);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.15) rotate(15deg);
    opacity: 1;
  }
}

/* ==========================================================================
   Header Section (Brand Logo & Tagline)
   ========================================================================== */
.card-header {
  text-align: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 5;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.brand-logo-img.fynora-logo-img {
  max-width: 240px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  margin-bottom: 4px;
}

.brand-logo-img.boom-logo-img {
  max-width: 210px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  margin-bottom: 6px;
}

.brand-logo-img.smart-logo-img {
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  margin-bottom: 6px;
}

.brand-logo-img.fabric-logo-img {
  max-width: 230px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  margin-bottom: 6px;
}

.brand-logo-img.sajavat-logo-img {
  max-width: 210px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  margin-bottom: 6px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 4px 0 6px 0;
}

.lotus-icon {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--text-gold-light);
  text-transform: uppercase;
}

/* ==========================================================================
   Product Showcase Image Frame with Overlaid Callout
   ========================================================================== */
.showcase-container {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.hero-callout {
  position: absolute;
  top: clamp(24px, 5.5vw, 55px);
  left: clamp(14px, 4.5vw, 30px);
  margin-top: 8px;
  z-index: 10;
  pointer-events: none;
  text-align: left;
  max-width: 80%;
}

.hero-text-sub {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 3vw, 1.6rem);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95);
}

.script-highlight-container {
  margin: 2px 0;
  display: inline-block;
  position: relative;
  /* padding-left: 6px; */
}

.hero-script-text {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 6.2vw, 3.8rem);
  line-height: 0.95;
  background: linear-gradient(135deg, #fff3b0 0%, #e6c562 40%, #c49622 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.95));
  display: inline-block;
  padding-left: 4px;
  padding-right: 18px;
}

.script-underline-svg {
  position: absolute;
  bottom: -4px;
  left: 6px;
  width: 100%;
  height: clamp(10px, 2.5vw, 18px);
  pointer-events: none;
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase-container:hover .showcase-img {
  transform: scale(1.03);
}

/* Clean Image Display (No dark overlay) */
.showcase-overlay {
  display: none;
}

/* ==========================================================================
   Features Box Grid (3 Columns)
   ========================================================================== */
.features-card-box {
  position: relative;
  background: rgba(18, 18, 24, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 18px 10px;
  margin-bottom: 22px;
  z-index: 5;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: stretch;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px 6px;
  position: relative;
}

/* Vertical Gold Dividers */
.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.4));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 245, 180, 0.3);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3), inset 0 1px 2px rgba(255, 245, 180, 0.5);
}

.feature-svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title-gold {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-gold-light);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 2px;
}

.feature-sub-white {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.2;
}

/* ==========================================================================
   Call To Action Buttons (High Contrast & Vibrant Visibility)
   ========================================================================== */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
  margin-top: 14px;
  position: relative;
  z-index: 5;
}

.cta-btn-full {
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2a2212 0%, #1a150a 50%, #0f0d06 100%);
  border: 1.8px solid #e6c562;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.9), 0 0 18px rgba(212, 175, 55, 0.35);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.cta-btn-full:hover {
  background: linear-gradient(135deg, #bf953f 0%, #3d3015 100%);
  border-color: #ffffff;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.95), 0 0 26px rgba(212, 175, 55, 0.55);
}

.instagram-handle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: lowercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.cta-row-dual {
  display: flex;
  gap: 12px;
  width: 100%;
}

.cta-row-dual .cta-btn {
  flex: 1;
}

.cta-btn {
  background: linear-gradient(135deg, #1c1c24 0%, #101016 100%);
  border: 1.8px solid rgba(212, 175, 55, 0.75);
  border-radius: 16px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.85), 0 0 14px rgba(212, 175, 55, 0.25);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-btn.callBtn {
  border-color: #d4af37;
  background: linear-gradient(135deg, #332711 0%, #1a1408 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.85), 0 0 16px rgba(212, 175, 55, 0.35);
}

.cta-btn.callBtn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #3d3015 100%);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.95), 0 0 24px rgba(212, 175, 55, 0.55);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-icon-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cta-icon-gold {
  fill: #fcf6ba;
  stroke: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

.cta-icon-filled-gold {
  fill: #fcf6ba;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

.cta-icon-whatsapp {
  fill: #25D366;
  stroke: none;
  filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.5));
}

.cta-btn-whatsapp {
  border-color: #3bd875 !important;
  background: linear-gradient(135deg, #0e3d1f 0%, #061b0d 100%) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.85), 0 0 18px rgba(37, 211, 102, 0.45) !important;
}

.cta-btn-whatsapp:hover {
  border-color: #ffffff !important;
  background: linear-gradient(135deg, #25D366 0%, #0c3319 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.95), 0 0 26px rgba(37, 211, 102, 0.6) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   Footer Tagline & Ornament
   ========================================================================== */
.card-footer {
  text-align: center;
  position: relative;
  z-index: 5;
}

.footer-text {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-gold-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-diamond-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.diamond-dot {
  width: 4px;
  height: 4px;
  background-color: var(--gold-primary);
  transform: rotate(45deg);
  opacity: 0.6;
}

.diamond-dot.center {
  width: 6px;
  height: 6px;
  opacity: 1;
  box-shadow: 0 0 6px var(--gold-primary);
}

/* ==========================================================================
   Interactive Modals & Toast Alerts
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: 20px;
  padding: 30px 25px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.modal-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.modal-action-btn {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.modal-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.toast-notification {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  visibility: hidden;
  background: rgba(20, 20, 26, 0.95);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 200;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 480px) {
  .fynora-card {
    padding: 25px 18px 22px 18px;
    border-radius: 22px;
  }

  .brand-title {
    font-size: 2.5rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
  }

  .hero-callout {
    top: 14px;
    left: 14px;
  }

  .features-grid {
    gap: 4px;
  }

  .feature-icon-wrapper {
    width: 38px;
    height: 38px;
  }

  .feature-svg {
    width: 18px;
    height: 18px;
  }

  .feature-title-gold {
    font-size: 0.58rem;
  }

  .feature-sub-white {
    font-size: 0.6rem;
  }

  .cta-btn {
    padding: 12px 4px;
    font-size: 0.62rem;
    gap: 5px;
  }

  .cta-icon-svg {
    width: 16px;
    height: 16px;
  }

  .footer-text {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }
}

/* Mobile-Optimized Animation: Lighter, Faster, Less GPU Load */
@media (max-width: 768px) {
  .fynora-card {
    box-shadow:
      0 14px 30px rgba(0, 0, 0, 0.85),
      0 0 14px rgba(212, 175, 55, 0.18);
  }

  .fynora-card.scroll-reveal {
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .fynora-card.scroll-reveal .card-header,
  .fynora-card.scroll-reveal .showcase-container,
  .fynora-card.scroll-reveal .cta-section,
  .fynora-card.scroll-reveal .card-footer {
    transform: translateY(12px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }

  .fynora-card.scroll-reveal.in-view .card-header {
    transition-delay: 0.2s;
  }

  .fynora-card.scroll-reveal.in-view .showcase-container {
    transition-delay: 0.28s;
  }

  .fynora-card.scroll-reveal.in-view .cta-section {
    transition-delay: 0.36s;
  }

  .fynora-card.scroll-reveal.in-view .card-footer {
    transition-delay: 0.44s;
  }

  /* Buttons: hover never fires on touch, so bake glow into base state + real tap feedback */
  .cta-btn-full {
    background: linear-gradient(135deg, rgba(58, 47, 20, 0.9) 0%, rgba(26, 21, 10, 0.9) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-color: #f0d685;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9), 0 0 22px rgba(212, 175, 55, 0.45);
  }

  .cta-btn-full:active {
    background: linear-gradient(135deg, #bf953f 0%, #3d3015 100%);
    transform: scale(0.97);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.9), 0 0 26px rgba(212, 175, 55, 0.65);
  }

  .cta-btn {
    background: linear-gradient(135deg, rgba(36, 36, 46, 0.92) 0%, rgba(16, 16, 22, 0.92) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.85), 0 0 18px rgba(212, 175, 55, 0.35);
  }

  .cta-btn:active {
    transform: scale(0.96);
  }

  .cta-btn.callBtn {
    background: linear-gradient(135deg, rgba(51, 39, 17, 0.92) 0%, rgba(26, 20, 8, 0.92) 100%);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.85), 0 0 20px rgba(212, 175, 55, 0.4);
  }

  .cta-btn.callBtn:active {
    background: linear-gradient(135deg, #d4af37 0%, #3d3015 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.9), 0 0 24px rgba(212, 175, 55, 0.6);
  }

  .cta-btn-whatsapp {
    background: linear-gradient(135deg, rgba(14, 61, 31, 0.92) 0%, rgba(6, 27, 13, 0.92) 100%) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.85), 0 0 20px rgba(37, 211, 102, 0.5) !important;
  }

  .cta-btn-whatsapp:active {
    background: linear-gradient(135deg, #25D366 0%, #0c3319 100%) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.9), 0 0 26px rgba(37, 211, 102, 0.65) !important;
    color: #ffffff !important;
  }
}