/* ==========================================================
   V5 - ULTRA LUXURY EDITORIAL (MAXIMUM SPACIOUSNESS)
   ========================================================== */

:root {
  --bg: #F0F4F8; /* Ice White */
  --bg-offset: #E2E8F0; /* Slate 200 */
  
  --text-main: #0B0B0B;
  --text-gray: #6B7280;
  --border: rgba(0, 0, 0, 0.08);
  
  --accent: #95BF47; /* Shopify Vivid Green */
  --accent-dark: #008060; /* Shopify Dark */
  --accent-soft: rgba(149, 191, 71, 0.12);
  --ice-blue: #00B4D8;
  --ice-blue-dark: #0077B6;
  --ice-blue-soft: rgba(0, 180, 216, 0.15); /* Soft Shopify Glow */
  
  /* Extremely subtle shadows for elegance */
  --shadow-lux: 0 30px 60px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 40px 80px rgba(0, 0, 0, 0.08);
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  
}

* { margin: 0; padding: 0; box-sizing: border-box; max-width: 100%; }
img, video, svg, canvas { max-width: 100%; height: auto; }

html, body {
  letter-spacing: -0.02em;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
}

body {
  letter-spacing: -0.02em;
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* Custom cursor */
  overflow-wrap: normal; /* Fix words being cut off */
}

/* Custom Cursor */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 6px; height: 6px;
  background: linear-gradient(145deg, #020617, #064E3B); border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-shadow {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px;
  border: 1px solid rgba(0,0,0,0.1); border-radius: 50%; pointer-events: none; z-index: 9998;
  transition: width 0.3s, height 0.3s;
}
body:hover .cursor-shadow { width: 40px; height: 40px; }
a:hover ~ .cursor-shadow, .magnetic-wrap:hover ~ .cursor-shadow { width: 60px; height: 60px; border-color: rgba(0,0,0,0.3); background: rgba(0,0,0,0.03); }

/* Typography Rules */
h1, h2, h3, h4, .font-display { font-family: var(--font-main); }
a { text-decoration: none; color: inherit; cursor: none; }
.text-center { text-align: center; }
.text-gray { color: var(--text-gray); }
.mt-2 { margin-top: 2rem; }

/* Massive Spacing */
.section-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; width: 100%; overflow: hidden; }
section { padding: 12rem 0; }

/* FLOATING NAV */
.nav-container {
  position: fixed; top: 2rem; left: 0; width: 100%; display: flex; justify-content: center; z-index: 1005;
  pointer-events: none;
}
.floating-nav {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 1.5rem; border-radius: 100px; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 3rem; box-shadow: var(--shadow-lux);
}
.nav-logo { height: 24px; display: block; transition: 0.3s; }
.nav-logo:hover { filter: drop-shadow(0 0 10px rgba(149, 191, 71, 0.4)); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-gray); transition: 0.3s; }
.nav-links a:hover { color: var(--text-main); }
.btn-pill {
  background: linear-gradient(145deg, #020617, #064E3B); color: #fff; padding: 0.6rem 1.5rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; transition: 0.3s;
}
.btn-pill:hover { box-shadow: 0 8px 30px rgba(0,180,216,0.6); transform: translateY(-2px); }
.magnetic { display: inline-block; }

/* BURGER & MOBILE MENU */
.burger-btn { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 32px; height: 32px; cursor: pointer; z-index: 1002; pointer-events: auto; }
.b-line { width: 100%; height: 2px; background: linear-gradient(145deg, #020617, #064E3B); transition: 0.4s; transform-origin: center; display: block; }
.burger-btn.active .top { transform: translateY(8px) rotate(45deg); }
.burger-btn.active .bottom { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(250, 250, 249, 0.95); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  z-index: 1001; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem;
  opacity: 0; pointer-events: none; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
.m-link { font-size: clamp(1.8rem, 5vw, 2.5rem); padding: 5px 0; font-family: var(--font-main); font-weight: 500; letter-spacing: -2px; opacity: 0; transform: translateY(20px); transition: 0.4s; }
.mobile-menu-overlay.open .m-link { opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.open .m-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.open .m-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.open .m-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.open .m-link:nth-child(4) { transition-delay: 0.4s; }


/* HERO EDITORIAL */
.hero-editorial {
  min-height: 100vh; padding-top: 15rem; padding-bottom: 6rem;
  display: flex; flex-direction: column;
}
.hero-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; width: 100%; }
.hero-top-text { font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; color: var(--text-gray); margin-bottom: 2rem; }
.text-shopify { background: linear-gradient(90deg, #008060, #00E5FF); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 10px 30px rgba(0,229,255,0.4); }
.hero-grand-title {
  font-size: clamp(2.5rem, 8vw, 9rem); font-weight: 600; line-height: 0.95; letter-spacing: -0.05em;
  margin-bottom: 4rem; text-transform: uppercase;
}
.shopify-orb {
  position: absolute; width: 60vw; height: 60vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle at 20% 30%, rgba(0,180,216,0.3) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(149,191,71,0.2) 0%, transparent 50%); opacity: 0.8; filter: blur(30px); mix-blend-mode: multiply;
  top: -10%; right: -5%; z-index: -1; pointer-events: none; border-radius: 50%;
}
.hero-bottom-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 4rem; border-top: 1px solid var(--border); padding-top: 3rem; }
.hero-editorial-desc { max-width: 500px; font-size: 1.2rem; line-height: 1.6; color: var(--text-gray); }

.btn-editorial {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1.1rem; font-weight: 600; font-family: var(--font-main);
  border-bottom: 1px solid #000; padding-bottom: 0.5rem; transition: 0.3s;
}
.btn-editorial:hover { gap: 1.5rem; color: var(--text-gray); border-color: var(--text-gray); }

/* Minimal Mockup */
.hero-visual-wrapper { margin-top: 8rem; max-width: 1400px; margin: 8rem auto 0; padding: 0 5%; }
.minimal-mockup {
  width: 100%; min-height: 400px; height: auto; background: var(--bg-offset); border-radius: 2px;
  border: 1px solid var(--border); position: relative; display: flex; flex-direction: column; overflow: visible;
}
.m-nav { padding: 1.5rem; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); }
.m-logo { width: 80px; height: 16px; background: rgba(0,0,0,0.1); border-radius: 4px; }
.m-links { display: flex; gap: 1rem; }
.m-line { height: 16px; background: rgba(0,0,0,0.05); border-radius: 4px; }
.w-small { width: 40px; } .w-medium { width: 200px; margin: 1rem auto; } .w-large { width: 400px; max-width: 90%; margin: 3rem auto 0; height: 32px;}
.m-hero { text-align: center; padding: 4rem; position: relative; height: 100%;}
.m-img-block { width: 80%; height: 200px; background: var(--bg); margin: 3rem auto 0; border: 1px solid var(--border); position: relative; }
.m-overlay-pill {
  position: absolute; bottom: -20px; right: -20px; background: #fff; padding: 1rem 2rem;
  box-shadow: var(--shadow-lux); display: flex; align-items: center; gap: 1rem; font-family: var(--font-main); font-weight: 600; font-size: 0.9rem;
}
.m-pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: blink 1.5s infinite; box-shadow: 0 0 10px var(--accent); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* STATEMENT SECTION */
.statement-section { background: linear-gradient(145deg, #020617, #064E3B); color: #fff; padding: 15rem 0; }
.statement-text { font-size: clamp(1.8rem, 5vw, 6rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 2rem; }
.statement-text span { color: transparent; background: linear-gradient(90deg, #008060, #00E5FF); -webkit-background-clip: text; background-clip: text; font-style: normal; font-weight: 600; text-shadow: 0 0 30px rgba(0,180,216,0.4); }
.statement-subtext { max-width: 600px; margin: 0 auto; color: #888; font-size: 1.3rem; line-height: 1.6; }

/* FEATURES EDITORIAL (FERAH BENTO) */
.features-editorial { background: linear-gradient(180deg, var(--bg) 0%, #E2E8F0 100%); }
.feature-grid-v5 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.f-block-v5 { background: var(--bg); display: flex; flex-direction: column; padding: 4rem; transition: all 0.4s; border-radius: 2px; }
.f-block-v5:hover { background: var(--accent-soft); border-color: rgba(149, 191, 71, 0.4); box-shadow: 0 10px 40px rgba(149, 191, 71, 0.05); }
.f-large { grid-column: 1 / span 3; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 6rem; }
.f-number { font-family: var(--font-main); font-size: 1rem; font-weight: 600; color: var(--text-gray); margin-bottom: 2rem; }
.f-content h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); letter-spacing: -1px; margin-bottom: 1.5rem; font-weight: 500; }
.f-content p { color: var(--text-gray); font-size: 1.1rem; line-height: 1.7; }

.f-visual { flex-grow: 1; min-height: 200px; margin-top: 3rem; position: relative; border-radius: 2px; }
.f-large .f-visual { 
  margin-top: 0; 
  min-height: 300px; 
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(149, 191, 71, 0.05)); 
  border: 1px solid rgba(0,180,216,0.1); 
  position: relative;
  overflow: hidden;
}
.f-large .f-visual::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.1) 0%, transparent 60%);
  animation: rotate 20s linear infinite;
}
.centered { display: flex; align-items: center; justify-content: center; }

/* Minimal Visuals */
.minimal-dial { 
  position: relative; 
  width: 150px; 
  height: 150px; 
  border-radius: 50%; 
  border: 2px solid rgba(149, 191, 71, 0.4); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: linear-gradient(135deg, rgba(149, 191, 71, 0.1), rgba(0, 180, 216, 0.1));
  box-shadow: 0 0 30px rgba(149, 191, 71, 0.2);
}
.minimal-dial span { color: #0077B6; text-shadow: 0 0 20px rgba(0, 180, 216, 0.3); font-weight: 600;  font-size: 3rem; font-weight: 400; font-family: var(--font-main); letter-spacing: -2px;}
.minimal-dial::after { 
  content:''; position: absolute; top:-2px; left:-2px; width: calc(100% + 4px); height: calc(100% + 4px); 
  border-radius: 50%; 
  border: 2px solid #00B4D8; 
  clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 0, 50% 0); 
  filter: drop-shadow(0 0 10px rgba(0, 180, 216, 0.5));
}

.cro-bars { display: flex; align-items: flex-end; gap: 1rem; justify-content: center; height: 150px; }
.c-bar { width: 30px; background: linear-gradient(180deg, #95BF47, #008060); box-shadow: 0 5px 15px rgba(149,191,71,0.3); transition: 0.5s; height: 20px; border-radius: 4px 4px 0 0;}
.h-1 { height: 40px; } .h-2 { height: 80px; } .h-3 { height: 120px; }
.f-block-v5:hover .c-bar { height: 60px; } .f-block-v5:hover .h-2 { height: 100px; } .f-block-v5:hover .h-3 { height: 140px; background: linear-gradient(145deg, #020617, #064E3B);}

.m-sphere { width: 100px; height: 100px; background: linear-gradient(145deg, #020617, #064E3B); border-radius: 50%; filter: blur(20px); opacity: 0.1; transition: 0.5s; }
.f-block-v5:hover .m-sphere { opacity: 0.3; transform: scale(1.2); }

/* COLLECTION (REFERANSLAR) */
.collection-section { border-top: 1px solid var(--border); }
.section-title { font-size: clamp(2rem, 7vw, 5rem); letter-spacing: -0.05em; font-weight: 600; }
.collection-header { margin-bottom: 6rem; display: flex; justify-content: space-between; align-items: flex-end; }
.btn-link { font-family: var(--font-main); font-size: 1.2rem; font-weight: 500; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; transition: 0.3s; }
.btn-link:hover { border-color: #000; padding-right: 1rem; }

.collection-list { display: flex; flex-direction: column; gap: 8rem; }
.c-item { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: center; }
.c-item:nth-child(even) { grid-template-columns: 1fr 2fr; direction: rtl; }
.c-item:nth-child(even) * { direction: ltr; }
.c-img-wrap { overflow: hidden; background: var(--bg-offset); }
.c-img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 16/10; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); filter: none; box-shadow: 0 10px 40px rgba(0, 128, 96, 0.1); border-radius: 8px; }
.c-item:hover .c-img { transform: scale(1.05); box-shadow: 0 20px 50px rgba(0, 128, 96, 0.2); }
.c-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; color: var(--text-gray); margin-bottom: 1.5rem; }
.c-info h4 { font-size: clamp(1.5rem, 4vw, 2.5rem); letter-spacing: -1px; margin-bottom: 1rem; font-weight: 500; }
.c-info p { color: var(--text-gray); font-size: 1.1rem; line-height: 1.6; max-width: 400px; max-width: 90%; }

/* TRANSFORM SHOWCASE — DRAMATIC SIDE-BY-SIDE */
.transform-showcase {
  padding: 10rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #E0F2FE 50%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.transform-showcase::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.08), transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.transform-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3px; color: #008060; background: rgba(0,128,96,0.08);
  padding: 8px 24px; border-radius: 50px; margin-bottom: 2rem;
  border: 1px solid rgba(0,128,96,0.15);
}
.transform-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 1.5rem;
}
.transform-highlight {
  background: linear-gradient(90deg, #008060, #00B4D8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.transform-sub {
  font-size: 1.2rem; color: var(--text-gray); max-width: 600px; margin: 0 auto 5rem;
  line-height: 1.6;
}

/* Stage Layout */
.transform-stage {
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
}

/* Cards */
.transform-card {
  flex: 1; max-width: 500px; position: relative;
}
.transform-label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  padding: 6px 20px; border-radius: 50px; z-index: 10;
}
.label-before { background: #FEE2E2; color: #DC2626; }
.label-after { background: #D1FAE5; color: #059669; box-shadow: 0 4px 15px rgba(5,150,105,0.2); }

/* Browser Chrome */
.transform-screen {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s;
}
.transform-before .transform-screen {
  transform: perspective(1200px) rotateY(3deg);
}
.transform-after .transform-screen {
  transform: perspective(1200px) rotateY(-3deg);
}
.transform-before:hover .transform-screen { transform: perspective(1200px) rotateY(0deg); box-shadow: 0 30px 80px rgba(0,0,0,0.15); }
.transform-after:hover .transform-screen { transform: perspective(1200px) rotateY(0deg); box-shadow: 0 30px 80px rgba(0,128,96,0.2); }

.screen-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; background: #F1F1F1;
  border-bottom: 1px solid #e0e0e0;
}
.topbar-dark { background: #1a1a2e; border-bottom-color: #2d2d44; }
.topbar-dark .screen-url { color: #888; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28C840; }
.screen-url { margin-left: 12px; font-size: 0.7rem; color: #999; font-family: monospace; }

/* MOCKUP IMAGE STYLE */
.screen-body-img { overflow: hidden; }
.mockup-img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 400px; }
.transform-before .mockup-img { filter: saturate(0.3) contrast(0.9) brightness(0.95); transition: filter 0.5s; }
.transform-before:hover .mockup-img { filter: saturate(0.5) contrast(0.95); }
.transform-after .mockup-img { transition: transform 0.5s, filter 0.5s; }
.transform-after:hover .mockup-img { transform: scale(1.02); }

/* Stats */
.transform-stats {
  display: flex; gap: 1rem; margin-top: 1.5rem; justify-content: center;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 24px; border-radius: 12px; min-width: 100px;
}
.stat-bad { background: #FEF2F2; border: 1px solid #FECACA; }
.stat-good { background: #ECFDF5; border: 1px solid #A7F3D0; }
.stat-num { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.stat-bad .stat-num { color: #DC2626; }
.stat-good .stat-num { color: #059669; }
.stat-label { font-size: 0.7rem; color: var(--text-gray); margin-top: 2px; font-weight: 500; }

/* Arrow */
.transform-arrow {
  flex-shrink: 0; animation: pulse-arrow 2s ease-in-out infinite;
}
@keyframes pulse-arrow { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }

/* Mobile */
@media (max-width: 900px) {
  .transform-stage { flex-direction: column; gap: 2rem; }
  .transform-card { max-width: 100%; }
  .transform-before .transform-screen, .transform-after .transform-screen { transform: none; }
  .transform-arrow { transform: rotate(90deg); }
  .transform-arrow svg { width: 40px; height: 40px; }
  .transform-title { font-size: 2rem; }
}

/* INVESTMENT / PRICING */
.investment-section { padding-top: 15rem; }
.inv-header { text-align: center; margin-bottom: 8rem; }
.inv-header p { font-size: 1.2rem; color: var(--text-gray); margin-top: 1rem; }
.inv-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1400px; margin: 0 auto; }
.inv-card { border: 1px solid var(--border); padding: 3rem 2rem; position: relative; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); background: linear-gradient(180deg, var(--bg), #ffffff); border-radius: 4px; display: flex; flex-direction: column; }
.inv-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lux); border-color: var(--accent); }

/* V.I.P Card Tiers */
.inv-card.dark-theme { background: #111; color: #fff; border-color: #333; }
.inv-card.dark-theme .currency, .inv-card.dark-theme .inv-desc { color: #888; }
.inv-card.dark-theme .inv-list li { border-color: rgba(255,255,255,0.05); color: #ddd; }
.inv-card.dark-theme .btn-black-large { background: #fff; color: #000; }
.inv-card.dark-theme .btn-black-large:hover { background: #ccc; }

.inv-card.brand-theme { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); box-shadow: 0 20px 50px var(--accent-soft); }
.inv-card.brand-theme .currency, .inv-card.brand-theme .inv-desc { color: rgba(255,255,255,0.8); }
.inv-card.brand-theme .inv-list li { border-color: rgba(255,255,255,0.15); color: #fff; }
.inv-card.brand-theme .btn-black-large { background: #fff; color: var(--accent-dark); }
.inv-card.brand-theme .btn-black-large:hover { background: #f0f0f0; }

.inv-badge { position: absolute; top: -12px; left: 2rem; background: linear-gradient(145deg, #020617, #064E3B); color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; padding: 0.3rem 1rem; border-radius:3px; box-shadow: var(--shadow-lux);}
.inv-top { border-bottom: 1px solid var(--border); padding-bottom: 3rem; margin-bottom: 3rem; }
.inv-top h3 { font-size: 2rem; font-weight: 500; letter-spacing: -1px; margin-bottom: 1.5rem; }
.inv-price { font-size: 3rem; font-family: var(--font-main); font-weight: 400; letter-spacing:-2px; line-height: 1; }
.currency { font-size: 1.2rem; color: var(--text-gray); }
.inv-desc { color: var(--text-gray); font-size: 1rem; line-height: 1.5; margin-bottom: 2rem; min-height: 60px;}
.inv-body {
  letter-spacing: -0.02em; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.inv-list { list-style: none; margin-bottom: 2rem; }
.inv-list li { padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.03); color: var(--text-main); font-size: 0.95rem; }
.btn-black-large { display: inline-flex; width: 100%; justify-content: center; background: linear-gradient(145deg, #020617, #064E3B); color: #fff; padding: 1.2rem; font-size: 1rem; font-weight: 500; transition: 0.3s; }
.btn-black-large:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,128,96,0.3); }

/* EDITORIAL FOOTER */
.editorial-footer { background: var(--bg-offset); padding: 8rem 0 2rem; border-top: 1px solid var(--border); overflow: hidden; }
.foot-top { display: flex; justify-content: space-between; margin-bottom: 6rem; }
.f-logo { height: 32px; display: block; margin-bottom: 1.5rem; }
.f-slogan { max-width: 300px; color: var(--text-gray); font-size: 1.2rem; line-height: 1.6; }
.f-col-links { display: flex; gap: 6rem; }
.f-nav-group h4 { font-size: 0.9rem; font-weight: 600; letter-spacing: 2px; color: #000; margin-bottom: 2rem; }
.f-nav-group a { display: block; color: var(--text-gray); margin-bottom: 1rem; font-size: 1.1rem; transition: 0.3s; }
.f-nav-group a:hover { color: #000; }
.foot-mega { font-size: clamp(3rem, 11vw, 15rem); overflow: hidden; font-family: var(--font-main); font-weight: 600; line-height: 0.8; letter-spacing: -0.05em; margin-bottom: 4rem; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(0,128,96,0.2); background: linear-gradient(180deg, #00B4D8, #008060); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.15; user-select: none; width: 100%; word-break: break-word; }
.foot-bottom { display: flex; justify-content: space-between; color: var(--text-gray); font-size: 0.9rem; border-top: 1px solid var(--border); padding-top: 2rem; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .inv-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  section { padding: 6rem 0; }
  .hero-editorial { padding-top: 8rem; padding-bottom: 4rem; min-height: 80vh; }
  .hero-grand-title { font-size: 2.8rem; line-height: 1.1; margin-bottom: 2rem; }
  .hero-top-text { font-size: 0.7rem; }
  
  .floating-nav { gap: 1rem; padding: 1rem 1.5rem; width: 95%; max-width: 450px; justify-content: space-between; align-items: center; border-radius: 100px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);}
  .nav-logo { height: 20px; }
  .nav-links { display: none; }
  .nav-action { display: none; }
  .burger-btn { display: flex; }
  .btn-editorial { font-size: 1rem; }
  
  .hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .m-hero { padding: 2rem 1rem; }
  .m-img-block { width: 100%; height: 150px; }
  .m-overlay-pill { right: auto; left: 50%; transform: translateX(-50%); bottom: -20px; padding: 0.6rem 1.2rem; font-size: 0.8rem; width: 90%; justify-content: center; }
  .minimal-mockup { min-height: 400px; height: auto; padding-bottom: 2rem;}
  
  .statement-section { padding: 8rem 0; }
  .statement-text { font-size: 2.2rem; }
  .statement-subtext { font-size: 1.1rem; }
  
  .feature-grid-v5 { grid-template-columns: 1fr; }
  .f-large { grid-column: 1; grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .f-block-v5 { padding: 2rem; }
  .f-content h3 { font-size: 1.8rem; }
  
  .c-item { grid-template-columns: 1fr; gap: 2rem; }
  .c-item:nth-child(even) { grid-template-columns: 1fr; }
  .c-info h4 { font-size: 2rem; }
  
  .ba-clean { height: 300px; border-radius: 16px; }
  .ba-divider::after { width: 32px; height: 32px; }
  .before-after-editorial .section-title { font-size: 2.5rem; }
  .ba-img { width: 100%; height: 300px; }
  
  .investment-section { padding-top: 6rem; }
  .inv-header { margin-bottom: 4rem; }
  
  /* Update grid breakpoints */
  .inv-cards { grid-template-columns: 1fr; gap: 2rem; }
  .inv-card { padding: 2.5rem; }
  
  .foot-top { flex-direction: column; gap: 3rem; margin-bottom: 3rem; }
  .f-col-links { flex-direction: column; gap: 2rem; }
  .foot-mega { font-size: 11vw; margin-bottom: 2rem; }
  .foot-bottom { flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
}

@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-grand-title { font-weight: 700; }

/* COMPREHENSIVE MOBILE FIX */
@media (max-width: 768px) {
  /* Kill custom cursor on touch devices */
  body { cursor: auto; }
  .cursor-dot, .cursor-shadow { display: none !important; }
  
  /* Prevent ALL horizontal overflow */
  html, body { overflow-x: clip !important; touch-action: pan-y !important; width: 100%; position: relative; overscroll-behavior-x: none; }
  section, header, footer, main { overflow: hidden; max-width: 100%; box-sizing: border-box; position: relative; }
  h1, h2, h3, h4, h5, h6, .statement-text { word-break: normal; overflow-wrap: break-word; }
  
  /* Transform showcase */
  .transform-showcase { padding: 4rem 0; }
  .transform-stage { flex-direction: column; gap: 2rem; padding: 0 4%; }
  .transform-card { max-width: 100%; width: 100%; }
  .transform-before .transform-screen,
  .transform-after .transform-screen { transform: none !important; }
  .transform-screen { border-radius: 12px; }
  .mockup-img { max-height: 250px; }
  .transform-arrow { transform: rotate(90deg); margin: 0.5rem 0; }
  .transform-arrow svg { width: 36px; height: 36px; }
  .transform-title { font-size: 1.8rem !important; }
  .transform-sub { font-size: 1rem; margin-bottom: 2.5rem; }
  .transform-stats { gap: 0.5rem; }
  .stat-item { padding: 8px 14px; min-width: auto; flex: 1; }
  .stat-num { font-size: 1.2rem; }
  .transform-label { font-size: 0.6rem; padding: 4px 14px; }
  
  /* Pricing cards */
  .inv-cards { grid-template-columns: 1fr !important; }
  .inv-price { font-size: 2.5rem; }
  .inv-top h3 { font-size: 1.5rem; }
  .inv-badge { font-size: 0.6rem; left: 1rem; }
  
  /* Hero */
  .hero-editorial { min-height: auto; padding-top: 7rem; }
  .hero-bottom-row { flex-direction: column; gap: 1.5rem; }
  .hero-editorial-desc { font-size: 1rem; }
  .hero-visual-wrapper { padding: 0 3%; margin-top: 3rem !important; }
  
  /* Feature grid */
  .feature-grid-v5 { grid-template-columns: 1fr !important; gap: 0; }
  .f-large { grid-column: 1 !important; grid-template-columns: 1fr !important; padding: 1.5rem !important; gap: 1rem; }
  .f-block-v5 { padding: 1.5rem; }
  .f-visual { min-height: 120px; }
  .f-large .f-visual { min-height: 180px; }
  
  /* Collection/References */
  .collection-header { flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
  .c-item { grid-template-columns: 1fr !important; }
  .c-item:nth-child(even) { grid-template-columns: 1fr !important; }
  
  /* Footer */
  .foot-top { flex-direction: column; gap: 2rem; }
  .f-col-links { flex-direction: column; gap: 1.5rem; }
  .foot-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  
  /* Mockup */
  .minimal-mockup { min-height: auto; }
  .m-overlay-pill { position: relative; bottom: auto; right: auto; left: auto; transform: none; margin: 1rem auto 0; width: auto; }
}

@media (max-width: 768px) { .hero-visual-wrapper, .minimal-mockup, .m-hero, .m-img-block { max-width: 100% !important; overflow: hidden !important; box-sizing: border-box !important; } .m-line.w-large { max-width: 90% !important; } .m-img-block { max-width: 90% !important; margin-left: auto !important; margin-right: auto !important; } }

@media(max-width: 768px){ .shopify-orb { display: none !important; right: auto !important; transform: none !important; } }

@media(max-width:1024px){ *, *::before, *::after { box-sizing: border-box !important; } html, body { overflow-x: hidden !important; position: relative; width: 100%; max-width: 100vw; } img, video, canvas, svg { max-width: 100% !important; } p, h1, h2, h3, h4, h5, h6, a, span, div { max-width: 100vw; overflow-wrap: break-word; word-wrap: break-word; } .hero-container, .hero-bottom-row, .statement-section, .collection-section, .nav-container, header, main, section, footer { width: 100% !important; max-width: 100vw !important; overflow-x: hidden !important; box-sizing: border-box !important; } }

/* Subpage Quiet Luxury Refactoring */
.subpage-hero {
  min-height: 40vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: 12rem 5% 4rem; background: var(--bg);
}
.subpage-title {
  font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; font-weight: 700; letter-spacing: -0.04em; color: var(--text-main); margin-bottom: 1.5rem;
}
.subpage-subtitle { color: var(--text-gray); font-size: 1.25rem; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.content-wrapper { padding: 4rem 5%; max-width: 1200px; margin: 0 auto; color: var(--text-main); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; align-items: stretch; }
.pricing-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 3rem 2rem; box-shadow: var(--shadow-lux); transition: all 0.4s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.p-title { font-size: 1.5rem; color: var(--text-main); margin-bottom: 0.5rem; font-weight: 600; }
.p-price { font-size: 3.5rem; font-weight: 700; color: var(--text-main); margin-bottom: 1rem; line-height: 1; }
.p-price span { font-size: 1.2rem; color: var(--text-gray); font-weight: 400; }
.p-desc { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; min-height: 50px; }
.p-features { list-style: none; padding: 0; margin: 0 0 3rem 0; }
.p-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-gray); margin-bottom: 1rem; font-size: 0.95rem; text-align: left; }
.p-btn-solid { background: linear-gradient(145deg, #020617, #064E3B); color: #fff; text-align: center; display: block; padding: 1.2rem; border-radius: 12px; font-weight: 600; }
.p-btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-main); text-align: center; display: block; padding: 1.2rem; border-radius: 12px; font-weight: 600; }
.pulse-line { width: 2px; height: 100px; background: linear-gradient(180deg, var(--text-main), transparent); margin: 3rem auto 0; opacity: 0.2; }


/* =========================================
   MOBILE FLUID DRAWER HEADER ARCHITECTURE
   ========================================= */
@media screen and (max-width: 768px) {
  /* 1. Header'ı Kenarlara Sıfırla (Edge-to-Edge) */
  .nav-container {
    top: 0 !important;
    padding: 0 !important;
  }
  .floating-nav {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    padding: 1rem 5% !important;
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    box-shadow: none !important;
  }

  /* 2. Menü Perdesini Sıvı Çekmeceye Çevir */
  .mobile-menu-overlay {
    top: 0 !important;
    height: auto !important;
    min-height: 50vh;
    padding: 7rem 2rem 3rem 2rem !important; /* Header hizasının altından başlat */
    justify-content: flex-start !important;
    align-items: flex-start !important;
    border-bottom-left-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 40px 60px rgba(0,0,0,0.08) !important;
    transform: translateY(-100%) !important; /* Yukarı sakla */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s !important;
  }
  
  .mobile-menu-overlay.open {
    transform: translateY(0) !important; /* Header'ın altından aşağı akıt */
  }

  /* 3. Linkleri Sol Hizalı ve Animasyonlu Yap */
  .mobile-menu-overlay .m-link {
    font-size: 2rem !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    padding: 0.5rem 0 !important;
    width: 100%;
    transform: translateX(-30px);
    transition: opacity 0.4s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-bottom: 1px solid rgba(0,0,0,0.03);
  }
  
  .mobile-menu-overlay .m-link:last-child {
    border-bottom: none;
    margin-top: 1rem;
    color: #95bf47 !important; /* Shopify yeşili vurgu */
  }

  .mobile-menu-overlay.open .m-link {
    transform: translateX(0) !important;
  }
}

/* =========================================
   NATIVE APP TAB-BAR (MOBILE)
   ========================================= */
.app-bottom-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  /* Hide the old burger and overlay completely */
  .burger-btn, .mobile-menu-overlay, .nav-action {
    display: none !important;
  }
  
  /* Shrink the top header slightly as it's only a logo now */
  .floating-nav {
    justify-content: center !important;
    height: 60px !important;
    padding: 0 !important;
  }
  .nav-logo { height: 26px !important; }

  /* Tab-Bar Styling */
  .app-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(70px + env(safe-area-inset-bottom, 15px));
    padding-bottom: env(safe-area-inset-bottom, 15px);
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.03);
  }

  .app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .app-nav-item svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
  }

  .app-nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
  }

  .app-nav-item.active {
    color: #020617; /* Dark active state */
  }
  /* Optional Shopify green active state: color: #95bf47; */
  .app-nav-item.active svg {
    transform: translateY(-2px);
    stroke-width: 2.5px;
  }
  
  /* Make sure footer doesn't get covered by dock */
  body {
    padding-bottom: 90px;
  }
}

/* =========================================
   NATIVE APP TAB-BAR (MOBILE)
   ========================================= */
.app-bottom-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  /* Hide the old burger and overlay completely */
  .burger-btn, .mobile-menu-overlay, .nav-action {
    display: none !important;
  }
  
  /* Shrink the top header slightly as it's only a logo now */
  .floating-nav {
    justify-content: center !important;
    height: 60px !important;
    padding: 0 !important;
  }
  .nav-logo { height: 26px !important; }

  /* Tab-Bar Styling */
  .app-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(70px + env(safe-area-inset-bottom, 15px));
    padding-bottom: env(safe-area-inset-bottom, 15px);
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.03);
  }

  .app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .app-nav-item svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
  }

  .app-nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
  }

  .app-nav-item.active {
    color: #020617; /* Dark active state */
  }
  /* Optional Shopify green active state: color: #95bf47; */
  .app-nav-item.active svg {
    transform: translateY(-2px);
    stroke-width: 2.5px;
  }
  
  /* Make sure footer doesn't get covered by dock */
  body {
    padding-bottom: 90px;
  }
}


/* =========================================
   REFERANSLAR BENTO GRID (QUIET LUXURY)
   ========================================= */
.bento-portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 450px;
  gap: 1.5rem;
  width: 100%;
}

.bento-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lux);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.bento-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 1;
}

.bento-item:hover .bento-image {
  transform: scale(1.05);
}

.bento-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.85) 100%);
  padding: 3rem 2rem 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  justify-content: flex-end;
  pointer-events: none;
}

.bento-cat {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.bento-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.bento-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bento-cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  width: max-content;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.bento-cta:hover {
  background: #fff;
  color: #000;
}

.bento-cta svg {
  width: 18px !important;
  height: 18px !important;
  transition: transform 0.3s;
}

.bento-cta:hover svg path {
  stroke: #000;
}

.bento-cta:hover svg {
  transform: translateX(4px);
}

.bento-large {
  grid-column: span 3;
}
.bento-square {
  grid-column: span 1;
}
.bento-wide {
  grid-column: span 4;
}

@media screen and (max-width: 1024px) {
  .bento-portfolio {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large { grid-column: span 2; }
  .bento-square { grid-column: span 1; }
  .bento-wide { grid-column: span 2; }
}

@media screen and (max-width: 768px) {
  .bento-portfolio {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bento-large, .bento-square, .bento-wide {
    grid-column: span 1;
  }
}


/* =========================================
   APPLE STYLE QUIET LUXURY FOOTER
   ========================================= */
.premium-footer-v5 {
  position: relative;
  background: #f5f5f7; /* Apple gray */
  padding: 6rem 5% 4rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  z-index: 10;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Plus Jakarta Sans", sans-serif;
}

.footer-glow-bg {
  display: none; /* No cheap glowing gradients in Apple style */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Apple usually aligns left or center rigidly */
  text-align: left;
  gap: 1rem;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #1d1d1f; /* Apple dark */
}

.footer-tagline {
  font-size: 1.1rem;
  color: #86868b; /* Apple light gray text */
  max-width: 600px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 1rem;
}

.f-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.f-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  letter-spacing: 0;
}

.f-col a {
  color: #515154;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.f-col a:hover {
  color: #1d1d1f;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.pulse-line-footer {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.08); /* Rigid static line, no pulse */
}

.footer-legal {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #86868b;
  font-size: 0.85rem;
  font-weight: 500;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: #515154;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: #1d1d1f;
}

@media screen and (max-width: 768px) {
  .premium-footer-v5 {
    padding: 4rem 2rem 6rem; 
  }
  
  .footer-top {
    align-items: center;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .f-col {
    align-items: center;
  }

  .footer-legal, .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }
}

  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .f-col {
    align-items: center;
  }
  
  .f-col a:hover {
    transform: translateX(0) scale(1.05); /* Centered transform */
  }

  .footer-legal, .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .f-col a, .footer-legal span, .footer-tagline {
    word-break: break-word;
    white-space: normal;
  }
}


/* =========================================
   WHATSAPP CONTACT SECTION (ILETISIM)
   ========================================= */
.wa-contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.wa-text-area h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.wa-text-area p {
  font-size: 1.25rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.online-indicator {
  width: 12px;
  height: 12px;
  background-color: #0D9488;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(13, 148, 136, 0.4);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(13, 148, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

.wa-glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.wa-card-content h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.wa-preset-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wa-preset-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.wa-preset-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.05);
  border-color: rgba(149, 191, 71, 0.3);
}

.wa-preset-btn span {
  font-size: 1.05rem;
}

.wa-preset-btn svg {
  width: 24px;
  height: 24px;
  fill: #95bf47;
  transition: transform 0.3s;
}

.wa-preset-btn:hover svg {
  transform: translateX(4px);
}

@media screen and (max-width: 900px) {
  .wa-contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 5%;
  }
}

@media screen and (max-width: 480px) {
  .wa-glass-card {
    padding: 1.5rem;
  }
  .wa-preset-btn {
    padding: 1rem;
  }
  .wa-preset-btn span {
    font-size: 0.90rem;
  }
}

/* =========================================
   INNOVATIVE CONTACT BENTO GRID
   ========================================= */
.contact-bento-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5% 6rem;
}

.b-contact-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 32px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.b-contact-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(149, 191, 71, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  width: fit-content;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #95bf47;
  border-radius: 50%;
  box-shadow: 0 0 10px #95bf47;
  animation: radar-pulse 2s infinite;
}

@keyframes radar-pulse {
  0% { box-shadow: 0 0 0 0 rgba(149, 191, 71, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(149, 191, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(149, 191, 71, 0); }
}

.live-status span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #5b7929;
  letter-spacing: 0.5px;
}

.b-main {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: center;
  background: #fafafc; /* Light Apple surface */
}

.b-main h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.b-main p {
  font-size: 1.25rem;
  color: #86868b;
  line-height: 1.5;
  max-width: 90%;
}

.b-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s;
}

.b-contact-card:hover .b-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.wa-wrap { background: #25D366; }
.wa-wrap svg { width: 32px; height: 32px; fill: #fff; }

.em-wrap { background: #1d1d1f; }
.em-wrap svg { width: 28px; height: 28px; stroke: #fff; }

.in-wrap { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.in-wrap svg { width: 28px; height: 28px; stroke: #fff; }

.b-card-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.b-card-content p {
  font-size: 1rem;
  color: #86868b;
  font-weight: 500;
}

.b-wa {
  grid-column: span 2;
  border: 1px solid rgba(149, 191, 71, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbf0 100%);
}

.b-wa:hover {
  border-color: rgba(149, 191, 71, 0.6);
}

.b-arrow {
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-size: 2rem;
  color: #1d1d1f;
  background: #f5f5f7;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  opacity: 0.5;
}

.b-wa:hover .b-arrow {
  transform: translateX(10px) rotate(-45deg);
  background: #95bf47;
  color: #fff;
  opacity: 1;
}

.wa-glow {
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(149,191,71,0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.b-email, .b-social {
  grid-column: span 1;
}

@media screen and (max-width: 1024px) {
  .contact-bento-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .contact-bento-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .b-main, .b-wa, .b-email, .b-social {
    grid-column: span 1;
  }
  .b-contact-card {
    padding: 2.5rem;
    border-radius: 24px;
  }
  .b-arrow {
    display: none;
  }
}

/* =========================================
   V6: SENSORY CONTACT BENTO GRID (ULTRA PREM)
   ========================================= */
.ambient-blobs {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  width: 40vw; height: 40vw;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float-blob 20s ease-in-out infinite alternate;
}
.b-green { background: #95bf47; top: -10%; left: -10%; }
.b-blue { background: #0ea5e9; bottom: -10%; right: -10%; animation-delay: -5s; }
@keyframes float-blob {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(150px, 150px) scale(1.2); }
}

/* Glass & Noise for ultra premium physical feel */
.noise-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

.b-contact-card.noise-bg {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03), inset 0 0 0 1px rgba(255,255,255,0.6);
}
.b-main { background: linear-gradient(145deg, rgba(250,250,252,0.85) 0%, rgba(240,240,245,0.45) 100%) !important; }

/* Terminal Header inside Main */
.b-terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.mac-dots span {
  display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 6px;
}
.mac-dots span:nth-child(1) { background: #ff5f56; box-shadow: 0 0 5px #ff5f56; }
.mac-dots span:nth-child(2) { background: #ffbd2e; box-shadow: 0 0 5px #ffbd2e; }
.mac-dots span:nth-child(3) { background: #27c93f; box-shadow: 0 0 5px #27c93f; }
.term-status { font-family: monospace; font-size: 0.75rem; color: #86868b; letter-spacing: 2px; }

.terminal-text {
  font-family: monospace;
  font-size: 0.95rem;
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.08);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  margin-top: 2rem;
  display: inline-block;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.1);
}

/* Timezone */
.b-timezone {
  grid-column: span 1;
  background: #000 !important;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important; /* Center flawlessly */
}
.b-timezone * { color: #fff; z-index: 2; position: relative;}
.tz-globe { position: absolute; right: -30px; bottom: -30px; font-size: 160px; opacity: 0.1; z-index: 1; filter: grayscale(1); transition: transform 2s; }
.b-timezone:hover .tz-globe { transform: rotate(15deg) scale(1.1); }
.tz-grid-bg {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px; z-index: 0; opacity: 0.5;
}
.tz-label { font-size: 0.8rem; color: #aaa; text-transform: uppercase; letter-spacing: 2px; }
.b-timezone h3 { font-family: monospace; font-size: 2.2rem; margin-top: 0.5rem; font-weight: 300; letter-spacing: -2px; }

/* WhatsApp Ripple */
.wa-ripple {
  position: absolute;
  top: 3rem; right: 3rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid #95bf47;
  animation: wa-ripple-anim 2s infinite;
  opacity: 0;
  pointer-events: none;
}
.b-wa:hover .wa-ripple { opacity: 1; }
@keyframes wa-ripple-anim {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* =========================================
   V7: EDITORIAL QUIET LUXURY CONTACT
   ========================================= */
.luxury-contact-core {
  max-width: 1000px;
  width: 100%;
}

.lc-header {
  margin-bottom: 5rem;
}

.lc-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.lc-title i {
  font-family: serif;
  font-weight: 300;
  font-style: italic;
  color: #95bf47; /* Elegant touch of green */
}

.lc-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-gray);
  max-width: 70%;
  line-height: 1.5;
  font-weight: 400;
}

.lc-paths {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 5rem;
}

.lc-path-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.lc-path-row::before {
  content: "";
  position: absolute;
  left: -30px; right: -30px; top: 0; bottom: 0;
  background: rgba(240, 240, 245, 0.5); /* Subtle frosted glass wrap */
  z-index: -1;
  opacity: 0;
  transform: scaleY(0.8);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px;
}

.lc-path-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.lc-path-row:hover {
  padding: 3.5rem 2rem;
}

.lc-path-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #95bf47;
  margin-bottom: 0.5rem;
  font-weight: 700;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s;
}

.lc-path-row:hover .lc-path-label {
  transform: translateY(0);
  opacity: 1;
}

.lc-path-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-main);
  letter-spacing: -1px;
  transition: color 0.4s;
}

.lc-path-row:hover .lc-path-name {
  font-weight: 500;
}

.lc-path-icon {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fff;
}

.lc-path-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--text-main);
  transition: all 0.4s;
}

.lc-path-icon svg.raw-stroke {
  fill: none !important;
  stroke: var(--text-main);
}

.lc-path-row:hover .lc-path-icon {
  background: var(--text-main);
  border-color: var(--text-main);
  transform: rotate(-15deg) scale(1.1);
}

.lc-path-row:hover .lc-path-icon svg {
  fill: #fff;
}
.lc-path-row:hover .lc-path-icon svg.raw-stroke {
  stroke: #fff;
}

@media screen and (max-width: 768px) {
  .lc-subtitle { max-width: 100%; }
  .lc-path-row { padding: 2.5rem 0; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .lc-path-row:hover { padding: 2.5rem 1.5rem; left: 0; right: 0; }
  .lc-path-row::before { left: -10px; right: -10px; }
  .luxury-contact-core { padding: 2rem 0; }
  .lc-path-label { opacity: 1; transform: translateY(0); } /* Always show label on mobile */
}

/* =========================================
   V8: ULTIMATE INTERACTIVE GLASS CONTACT
   ========================================= */
.interactive-glow {
  position: absolute;
  top: -300px;
  left: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(149,191,71,0.2) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
  transition: background 0.8s ease, opacity 0.8s ease;
  will-change: transform;
}

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

.gc-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.gc-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.gc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gc-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.8);
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-radius: 32px;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.02);
  overflow: hidden;
}

.gc-card::before {
  content: attr(data-hover-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(200px);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.02);
  /* white-space: nowrap; removed to prevent cutoff */
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -2px;
  z-index: 0;
}

.gc-card:hover::before {
  transform: translate(-50%, -50%) translateY(0);
}

.gc-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  background: rgba(255, 255, 255, 0.85);
  border-color: #fff;
}

.gc-icon {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  margin-bottom: 2rem;
  transition: all 0.5s;
  z-index: 1;
}

.gc-card:hover .gc-icon {
  transform: scale(1.15) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gc-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--text-main);
  transition: fill 0.3s;
}

.gc-icon svg.raw-stroke {
  fill: none !important;
  stroke: var(--text-main);
  transition: stroke 0.3s;
}

.gc-card:nth-child(1):hover .gc-icon svg { fill: #25D366; }
.gc-card:nth-child(2):hover .gc-icon svg.raw-stroke { stroke: #0ea5e9; }
.gc-card:nth-child(3):hover .gc-icon svg.raw-stroke { stroke: #E1306C; }

.gc-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  z-index: 1;
}

.gc-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1.05rem;
  z-index: 1;
}

.gc-arrow {
  position: absolute;
  bottom: 2rem;
  font-size: 2rem;
  color: var(--text-gray);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s;
}

.gc-card:hover .gc-arrow {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1024px) {
  .gc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gc-card { padding: 3rem 2rem; }
  .interactive-glow { display: none; } /* Disable CPU heavy glow on mobile/tablet */
}

/* =========================================
   V9: VIBRANT NEON DARK PORTAL CONTACT
   ========================================= */
.neon-mesh-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: mesh-float 25s ease-in-out infinite alternate;
}

.orb-1 {
  width: 60vw; height: 60vw;
  background: #39ff14; /* Acid Green */
  top: -20%; left: -20%;
}
.orb-2 {
  width: 50vw; height: 50vw;
  background: #00f0ff; /* Cyan */
  bottom: -10%; right: -10%;
  animation-delay: -5s;
}
.orb-3 {
  width: 40vw; height: 40vw;
  background: #ff007f; /* Neon Magenta */
  top: 40%; left: 30%;
  animation-delay: -10s;
  opacity: 0.2;
}

@keyframes mesh-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(100px, -150px) scale(1.3); }
}

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

.nc-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.nc-gradient-text {
  background: linear-gradient(135deg, #39ff14, #00f0ff, #e91e63);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  animation: hue-rotate 10s linear infinite;
}

@keyframes hue-rotate {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

.nc-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: a5b5c5;
  max-width: 600px;
  margin: 0 auto;
}

.nc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.nc-card {
  background: rgba(20, 20, 25, 0.7);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 32px;
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Base Shadow & Hover Lift */
.nc-card:hover {
  transform: translateY(-15px);
  background: rgba(25, 25, 30, 0.9);
}

.nc-wa:hover { box-shadow: 0 30px 60px rgba(57, 255, 20, 0.15), inset 0 0 0 1px rgba(57, 255, 20, 0.5); }
.nc-em:hover { box-shadow: 0 30px 60px rgba(0, 240, 255, 0.15), inset 0 0 0 1px rgba(0, 240, 255, 0.5); }
.nc-ig:hover { box-shadow: 0 30px 60px rgba(255, 0, 127, 0.15), inset 0 0 0 1px rgba(255, 0, 127, 0.5); }

/* The colored bar on top of the card */
.nc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  opacity: 0;
  transition: opacity 0.5s;
}
.nc-wa::before { background: #39ff14; box-shadow: 0 0 20px #39ff14; }
.nc-em::before { background: #00f0ff; box-shadow: 0 0 20px #00f0ff; }
.nc-ig::before { background: #ff007f; box-shadow: 0 0 20px #ff007f; }

.nc-card:hover::before { opacity: 1; }

.nc-icon-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.nc-icon-ring::after {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
  transition: all 0.5s;
}

.wa-ring::after { background: #39ff14; filter: blur(10px); }
.em-ring::after { background: #00f0ff; filter: blur(10px); }
.ig-ring::after { background: #ff007f; filter: blur(10px); }

.nc-card:hover .nc-icon-ring::after {
  opacity: 0.8;
  filter: blur(20px);
  transform: scale(1.1);
}

.nc-icon-ring svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  z-index: 10;
  transition: transform 0.4s;
}

.nc-icon-ring svg.raw-stroke {
  fill: none !important;
  stroke: #fff;
}

.nc-card:hover .nc-icon-ring svg {
  transform: scale(1.2) rotate(5deg);
}

.nc-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.nc-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  flex-grow: 1; /* Pushes button to bottom naturally */
}

.nc-btn {
  display: inline-block;
  width: 100%;
  padding: 1.25rem 0;
  border-radius: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}

.wa-btn { background: #39ff14; box-shadow: 0 10px 20px rgba(57, 255, 20, 0.2); }
.em-btn { background: #00f0ff; box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2); }
.ig-btn { background: #ff007f; color: #fff; box-shadow: 0 10px 20px rgba(255, 0, 127, 0.2); }

.nc-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

.wa-btn:hover { box-shadow: 0 15px 30px rgba(57, 255, 20, 0.4); }
.em-btn:hover { box-shadow: 0 15px 30px rgba(0, 240, 255, 0.4); }
.ig-btn:hover { box-shadow: 0 15px 30px rgba(255, 0, 127, 0.4); }

@media screen and (max-width: 1024px) {
  .nc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nc-card { padding: 3rem 2rem; }
  .neon-mesh-bg { opacity: 0.6; }
}

/* =========================================
   V10: APPLE iOS 17 BENTO LUXURY PORTAL
   ========================================= */
.apple-bento-portal {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

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

.ab-header h2 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -2px;
  color: #1d1d1f;
  margin-bottom: 1rem;
}

.ab-header h2 b {
  font-weight: 800;
  background: linear-gradient(135deg, #95bf47, #5b7929);
  -webkit-background-clip: text;
  color: transparent;
}

.ab-header p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #86868b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

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

.ab-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ab-card {
  position: relative;
  background: #ffffff;
  border-radius: 36px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ab-wa {
  padding: 4rem;
}

.ab-em, .ab-ig {
  padding: 3rem;
  flex-grow: 1; /* Makes them fill the column equally */
}

/* Base Shadow & Hover Lift */
.ab-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* Colored Orbs Inside Cards */
.ab-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.green-glow { width: 300px; height: 300px; background: #95bf47; bottom: -50px; right: -50px; }
.blue-glow { width: 250px; height: 250px; background: #0ea5e9; bottom: -50px; right: -20px; }
.pink-glow { width: 250px; height: 250px; background: #ff007f; bottom: -50px; right: -20px; }

.ab-card:hover .ab-glow {
  opacity: 0.35;
  transform: scale(1.3);
}

/* Card Content Layering over the Glow */
.ab-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ab-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.ab-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #86868b;
  margin-bottom: 1rem;
  display: block;
}

.ab-wa .ab-tag { color: #5b7929; }
.ab-em .ab-tag { color: #0284c7; }
.ab-ig .ab-tag { color: #be185d; }

.ab-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.ab-card p {
  font-size: 1.1rem;
  color: #86868b;
  line-height: 1.6;
}

.ab-wa p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 90%;
}

/* Icons */
.ab-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(29, 29, 31, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto; /* Push it to bottom automatically in flex */
  transition: all 0.4s;
  backdrop-filter: blur(10px);
}

.ab-wa .ab-icon {
  width: 90px;
  height: 90px;
  background: #25D366;
  border-radius: 28px;
}

.ab-icon svg {
  width: 32px;
  height: 32px;
  fill: #1d1d1f;
}

.ab-wa .ab-icon svg { fill: #fff; width: 44px; height: 44px; }
.ab-icon svg.raw-stroke { fill: none !important; stroke: #1d1d1f; }

.ab-card:hover .ab-icon {
  transform: rotate(-10deg) scale(1.1);
}

@media screen and (max-width: 1024px) {
  .ab-grid { grid-template-columns: 1fr; }
  .ab-wa, .ab-em, .ab-ig { padding: 3rem 2rem; }
}

/* =========================================
   QUIET LUXURY PRICING CARDS
   ========================================= */
.pricing-interactive-mode {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pricing-master-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    max-width: 1300px;
}

.master-price-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    flex: 1 1 300px;
}

.master-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.master-price-card.pro-plan-v2 {
    border: 1px solid rgba(149, 191, 71, 0.3);
}

.pro-glow-effect {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(149, 191, 71, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.m-card-header, .m-card-body, .m-card-footer {
    position: relative;
    z-index: 1;
}

.m-card-title-area {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.badge-inline-pill {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #eef5e6;
    color: #5b7929;
    padding: 0.4rem 1rem;
    border-radius: 30px;
}

.pro-plan-v2 .badge-inline-pill {
    background: #95bf47;
    color: #fff;
    box-shadow: 0 5px 15px rgba(149, 191, 71, 0.3);
}

.plan-desc {
    font-size: 1.05rem;
    color: #86868b;
    line-height: 1.5;
}

.m-card-price-area {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.old-price-v2 {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: #a1a1a6;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1d1d1f !important;
    line-height: 1;
    letter-spacing: -2px;
}

.pro-plan-v2 .plan-price {
    color: #1d1d1f !important; 
}

.price-suffix {
    font-size: 1rem;
    font-weight: 500;
    color: #86868b;
    letter-spacing: 0;
    margin-left: 0.5rem;
}

.m-card-body {
    flex-grow: 1;
    margin-bottom: 3rem;
}

.master-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.master-features li {
    font-size: 1.05rem;
    color: #1d1d1f;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.4;
}

.master-features li::before {
    content: "✓";
    color: #95bf47;
    font-weight: 800;
    font-size: 1.1rem;
}

.m-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.25rem 0;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s;
    letter-spacing: 0.5px;
}

.btn-primary-v2 {
    background: #1d1d1f;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary-v2:hover {
    background: #95bf47;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(149, 191, 71, 0.3);
}

.btn-outline-v2 {
    background: #f5f5f7;
    color: #1d1d1f !important;
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-outline-v2:hover {
    background: #eef5e6;
    border-color: #95bf47;
    color: #5b7929 !important;
}

/* DESKTOP: Enforce all cards visible, ignoring JS inline styles for mobile tabs */
@media screen and (min-width: 1025px) {
    .pricing-tab-container { 
        display: none !important; 
    }
    .master-price-card {
        opacity: 1 !important;
        position: relative !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    /* Hover should still work on desktop */
    .master-price-card:hover {
        transform: translateY(-10px) !important;
    }
}

/* TABLET/IPAD PRO */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .pricing-tab-container { 
        display: none !important; 
    }
    .pricing-master-card-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .master-price-card {
        max-width: 100%;
        opacity: 1 !important;
        position: relative !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
}

/* MOBILE: Allow JS to completely control active/inactive states */
@media screen and (max-width: 768px) {
    .pricing-master-card-wrapper {
        position: relative;
        display: block; 
    }
    
    .master-price-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 2.5rem 1.5rem;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
    
    .master-price-card.active {
        position: relative !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }

    .plan-price { font-size: 3rem; }
}

/* =========================================
   V11: INNOVATIVE WALLET STACKING PRICING
   ========================================= */
.pricing-cards-v2 {
    max-width: 1000px !important; /* Slightly narrower for wallet feel */
    margin: 4rem auto 10rem !important;
}

.wallet-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 10vh; /* Room for the last card to scroll past */
}

.wallet-card {
    position: sticky;
    width: 100%;
    border-radius: 36px;
    padding: 3.5rem;
    margin-bottom: 25vh; /* Provides the scrolling scrollway before the next card arrives */
    box-shadow: 0 -15px 40px rgba(0,0,0,0.03), 0 30px 60px rgba(0,0,0,0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    will-change: transform;
}

.wallet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 -20px 50px rgba(0,0,0,0.05), 0 40px 80px rgba(0,0,0,0.04);
}

.w-card-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.w-card-meta {
    flex: 1;
}

.wallet-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    border: 1px solid;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.w-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.w-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 90%;
}

.w-card-price {
    text-align: right;
    min-width: 250px;
}

.w-old {
    display: block;
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.5;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.w-cost {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.w-suffix {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    display: block;
    margin-top: 0.5rem;
}

.w-divider {
    margin: 2.5rem 0;
    border: none;
    border-top-width: 1px;
    border-top-style: solid;
}

.w-card-features {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
}

.w-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
    flex: 1;
}

.w-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}

.w-action {
    min-width: 220px;
}

.w-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.25rem 2rem;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s;
}

.w-btn.btn-dark { background: #1d1d1f; color: #fff; }
.w-btn.btn-dark:hover { background: #333; transform: scale(1.02); }

.w-btn.btn-green { background: #95bf47; color: #fff; box-shadow: 0 10px 20px rgba(149, 191, 71, 0.2); }
.w-btn.btn-green:hover { background: #7ba238; transform: scale(1.02); box-shadow: 0 15px 30px rgba(149, 191, 71, 0.3); }

.w-btn.btn-white { background: #fff; color: #1d1d1f; }
.w-btn.btn-white:hover { background: #f0f0f0; transform: scale(1.02); }

.w-btn.btn-accent { background: linear-gradient(135deg, #0ea5e9, #2563eb); color: #fff; }
.w-btn.btn-accent:hover { filter: brightness(1.1); transform: scale(1.02); }

@media screen and (max-width: 1024px) {
    .wallet-card { padding: 2.5rem; margin-bottom: 15vh; }
    .w-card-inner { flex-direction: column; gap: 1.5rem; }
    .w-card-price { text-align: left; }
    .w-card-features { flex-direction: column; align-items: stretch; gap: 2rem; }
    .w-list { grid-template-columns: 1fr; }
}

/* =========================================
   V14: MACOS SETTINGS DASHBOARD PRICING
   ========================================= */
.macos-pricing-dashboard {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 40px 100px rgba(0,0,0,0.04), inset 0 0 0 1px rgba(255,255,255,0.4);
    overflow: hidden;
    min-height: 600px;
}

/* SIDEBAR */
.macos-sidebar {
    width: 320px;
    background: rgba(245, 245, 247, 0.7);
    border-right: 1px solid rgba(0,0,0,0.05);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.macos-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.macos-nav-item:hover {
    background: rgba(0,0,0,0.03);
}

.macos-nav-item.active {
    background: #1d1d1f;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.macos-nav-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d2d2d7;
    transition: all 0.3s;
}

.macos-nav-item.active .macos-nav-icon {
    background: #95bf47;
    box-shadow: 0 0 10px rgba(149, 191, 71, 0.6);
}

.macos-nav-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.m-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.macos-nav-item:not(.active) .m-nav-title {
    color: #1d1d1f;
}

.m-nav-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* CONTENT AREA */
.macos-content-area {
    flex: 1;
    position: relative;
    padding: 4rem;
    background: #ffffff;
}

.macos-panel {
    display: none;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.macos-panel.active {
    display: flex;
}

.m-panel-header {
    margin-bottom: 3rem;
}

.m-panel-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: #1d1d1f;
    margin-bottom: 1rem;
    line-height: 1;
}

.m-panel-desc {
    font-size: 1.25rem;
    color: #86868b;
    line-height: 1.5;
    max-width: 600px;
}

.m-panel-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    background: #f5f5f7;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.m-price-left {
    display: flex;
    flex-direction: column;
}

.m-old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #a1a1a6;
    font-weight: 600;
}

.m-current-price {
    font-size: 4rem;
    font-weight: 800;
    color: #1d1d1f;
    line-height: 1;
    letter-spacing: -2px;
}

.m-price-suf {
    font-size: 1.1rem;
    font-weight: 500;
    color: #86868b;
    margin-left: 0.5rem;
    letter-spacing: 0;
}

.m-btn-macos {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1d1d1f;
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.m-btn-macos svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s;
}

.m-btn-macos:hover {
    background: #95bf47;
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(149, 191, 71, 0.3);
}

.m-btn-macos:hover svg {
    transform: translateX(5px);
}

.m-panel-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.macos-feat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1d1d1f;
}

.macos-feat svg {
    width: 24px;
    height: 24px;
    stroke: #95bf47;
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
}

/* MOBILE */
@media screen and (max-width: 900px) {
    .macos-pricing-dashboard {
        flex-direction: column;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: transparent;
        margin: 0 -1.5rem; /* Full bleed on mobile */
    }
    
    .macos-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        flex-direction: row;
        overflow-x: auto;
        padding: 1rem 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: rgba(255,255,255,0.9);
        position: sticky;
        top: 60px; /* Below nav */
        z-index: 100;
    }
    
    .macos-sidebar::-webkit-scrollbar { display: none; }
    
    .macos-nav-item {
        flex-direction: column;
        flex: 0 0 auto;
        padding: 0.75rem 1.25rem;
        border-radius: 30px;
        background: #f5f5f7;
    }
    
    .macos-nav-item.active {
        background: #1d1d1f;
        transform: scale(1.05);
    }
    
    .macos-nav-icon { display: none; }
    
    .macos-content-area {
        padding: 2.5rem 1.5rem;
    }
    
    .m-panel-title { font-size: 2.5rem; }
    .m-panel-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 2rem;
    }
    .m-btn-macos { width: 100%; justify-content: center; }
    .m-panel-features-grid { grid-template-columns: 1fr; }
}

/* =========================================
   V15: PURE QUIET LUXURY GRID PRICING
   ========================================= */
.ql-pricing-container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ql-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1350px;
    margin: 0 auto;
    align-items: center; /* Center them vertically so the popular one can be taller */
    padding: 0 1.5rem;
}

.ql-card {
    background: #fafafc;
    border-radius: 36px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.ql-feat-li {
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1d1d1f;
}

.ql-card:hover {
    transform: translateY(-5px);
}

.ql-popular {
    background: #ffffff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08); /* Massive deep soft shadow */
    transform: scale(1.05); /* Stands out visually */
    z-index: 10;
    padding: 5rem 3.5rem; /* Noticeably more spacious */
    border: 1px solid rgba(0,0,0,0.05);
}

.ql-popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.ql-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d1d1f;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* white-space: nowrap; removed to prevent cutoff */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ql-btn-primary, .ql-btn-secondary, .ql-btn-white {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.35rem 2rem;
    border-radius: 20px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.ql-btn-primary {
    background: #1d1d1f;
    color: #fff;
}
.ql-btn-primary:hover {
    background: #95bf47; /* Hover to brand green */
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(149, 191, 71, 0.3);
}

.ql-btn-secondary {
    background: #f0f0f5;
    color: #1d1d1f;
}
.ql-btn-secondary:hover {
    background: #e6e6ec;
}

.ql-enterprise-banner {
      max-width: 1350px;
      margin: 6rem auto 2rem;
      background: #1d1d1f;
      border-radius: 40px;
      padding: 5rem 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 2rem;
      box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  }

.ql-btn-white {
    background: #fff;
    color: #1d1d1f;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}
.ql-btn-white:hover {
    transform: scale(1.03);
}

@media screen and (max-width: 1200px) {
    .ql-pricing-grid { gap: 1.5rem; }
    .ql-card { padding: 3rem 2rem; }
    .ql-popular { padding: 4rem 2.5rem; transform: scale(1.02); }
    .ql-popular:hover { transform: scale(1.02) translateY(-5px); }
}

@media screen and (max-width: 900px) {
    .ql-pricing-container { padding: 0; margin-left: -5vw; margin-right: -5vw; width: 100vw;
        max-width: 100vw;
        overflow: hidden;
    }
    .ql-pricing-grid {
          display: flex !important;
          flex-direction: row !important;
          flex-wrap: nowrap !important;
          overflow-x: auto !important;
          overflow-y: hidden !important;
          scroll-snap-type: x mandatory !important;
          gap: 1.5rem !important;
          padding: 1rem 1.5rem 4rem 1.5rem !important;
          scroll-padding-left: 1.5rem !important;
          -webkit-overflow-scrolling: touch !important;
          scrollbar-width: auto !important;
          width: 100vw !important;
          max-width: 100vw !important;
          position: relative !important;
          pointer-events: auto !important;
      }
      .ql-card {
          flex: 0 0 72vw !important;
          width: 72vw !important;
          max-width: 72vw !important;
          scroll-snap-align: center !important;
          padding: 3rem 2rem !important;
          pointer-events: auto !important;
      }
    
    .ql-card {
        flex: 0 0 82vw;
        scroll-snap-align: center;
        padding: 3rem 2rem;
    }
    .ql-swipe-indicator-mobile {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 0.75rem;
          font-size: 0.9rem;
          font-weight: 800;
          text-transform: uppercase;
          letter-spacing: 3px;
          color: #1d1d1f;
          margin-bottom: 2rem;
          animation: swipePulse 2s infinite ease-in-out;
          width: 100%;
          background: rgba(0,0,0,0.03);
          padding: 1rem;
          border-radius: 12px;
      }
    @keyframes swipePulse {
        0%, 100% { opacity: 0.5; transform: translateX(0); }
        50% { opacity: 1; transform: translateX(5px); }
    }

    .ql-popular {
        transform: scale(1);
    }
    .ql-popular:hover {
        transform: scale(1) translateY(-5px);
    }
    .ql-enterprise-banner {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
        margin: 4rem 1.5rem 0;
    }
    .ql-ent-right { width: 100%; }
    .ql-btn-white { width: 100%; }
}

@media screen and (min-width: 901px) { .ql-swipe-indicator-mobile {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 0.75rem;
          font-size: 0.9rem;
          font-weight: 800;
          text-transform: uppercase;
          letter-spacing: 3px;
          color: #1d1d1f;
          margin-bottom: 2rem;
          animation: swipePulse 2s infinite ease-in-out;
          width: 100%;
          background: rgba(0,0,0,0.03);
          padding: 1rem;
          border-radius: 12px;
      } }

/* =========================================
   V16: COLORFUL QUIET LUXURY CENTERED 
   ========================================= */

.ql-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);
}

.ql-card-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,0,0,0.01) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.ql-card > * {
    position: relative;
    z-index: 1;
}

/* Base formatting overrides for centering */
.ql-card-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    color: #1d1d1f;
}

.ql-card-header p {
    font-size: 1.05rem;
    color: #86868b;
    line-height: 1.5;
    min-height: 50px;
    margin: 0 auto;
    max-width: 90%;
}

.ql-card-price {
    margin: 2.5rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ql-old-price {
    font-size: 1.1rem;
    color: #a1a1a6;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.ql-main-price {
    font-size: 3.8rem;
    font-weight: 800;
    color: #1d1d1f;
    letter-spacing: -2px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.ql-price-suffix {
    font-size: 1rem;
    font-weight: 500;
    color: #86868b;
    letter-spacing: 0;
    margin-left: 0.2rem;
}

.ql-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left; /* Keep lists readable */
}

.ql-feat-li {
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.5;
}

.ql-feat-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    background: #f5f5f7;
}

.ql-feat-icon-wrap svg {
    width: 14px;
    height: 14px;
    color: #86868b;
}

.ql-badge {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1d1d1f;
    color: #fff;
    padding: 0.4rem 1.25rem;
    border-radius: 30px;
    font-size: 0.70rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* THEMES */
/* Silver */
.ql-theme-silver .ql-card-glow-bg { background: radial-gradient(circle at top left, rgba(220, 220, 225, 0.25) 0%, transparent 60%); }
.ql-theme-silver .ql-card-header h3 { color: #434345; }

/* Emerald (Popular) */
.ql-theme-emerald { border-color: rgba(13, 148, 136, 0.2); }
.ql-theme-emerald .ql-card-glow-bg { background: radial-gradient(circle at top right, rgba(13, 148, 136, 0.1) 0%, transparent 70%); }
.ql-theme-emerald .ql-card-header h3 { color: #0f766e; }
.ql-theme-emerald .ql-badge { background: linear-gradient(135deg, #0d9488, #0f766e); box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3); top: -16px; }
.ql-theme-emerald .ql-feat-icon-wrap { background: rgba(13, 148, 136, 0.1); }
.ql-theme-emerald .ql-feat-icon-wrap svg { color: #0d9488; }
.ql-theme-emerald .ql-main-price { color: #0d9488; }
.ql-theme-emerald .ql-popular { padding-top: 4.5rem; }

/* Gold */
.ql-theme-gold .ql-card-glow-bg { background: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.1) 0%, transparent 60%); }
.ql-theme-gold .ql-card-header h3 { color: #b8860b; }
.ql-theme-gold .ql-feat-icon-wrap { background: rgba(212, 175, 55, 0.1); }
.ql-theme-gold .ql-feat-icon-wrap svg { color: #b8860b; }

/* Buttons Overrides */
.ql-btn-secondary { background: #f5f5f7; color: #1d1d1f; }
.ql-btn-secondary:hover { background: #1d1d1f; color: #fff; }

.ql-glow-btn { background: #0d9488; color: #fff; box-shadow: 0 15px 30px rgba(13, 148, 136, 0.2); border: none; }
.ql-glow-btn:hover { background: #0f766e; box-shadow: 0 20px 40px rgba(13, 148, 136, 0.3); transform: translateY(-3px); color: #fff; }

/* Enterprise adjustments */
.ql-enterprise-banner { position: relative; overflow: hidden; background: linear-gradient(135deg, #111 0%, #1a1a1c 100%); margin: 2rem auto !important; width: 100%; }
.ql-ent-bg-glow { position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.ql-ent-eyebrow { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: #86868b; font-weight: 700; display: block; margin-bottom: 0.5rem;  margin-bottom: 1rem; }
.ql-ent-title { font-size: 3rem; font-weight: 800; color: #fff; margin-bottom: 1rem; letter-spacing: -1px; }
.ql-ent-desc { font-size: 1.15rem; color: #a1a1a6; max-width: 500px; line-height: 1.5;  margin: 0 auto; }

      .ql-pricing-grid::-webkit-scrollbar {
          display: block !important;
          height: 8px !important;
          background: rgba(0,0,0,0.03) !important;
          border-radius: 10px !important;
      }
      .ql-pricing-grid::-webkit-scrollbar-thumb {
          background: #d2d2d7 !important;
          border-radius: 10px !important;
      }

@media screen and (max-width: 900px) {
    .ql-badge {
        font-size: 0.65rem;
        letter-spacing: 1px;
        padding: 0.4rem 1rem;
        width: 90%;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
    }
}

/* =======================================================================
   CRITICAL MOBILE + ENTERPRISE FIXES - ENFORCED 
   ======================================================================= */

/* 1. SCROLLBAR AND MOBILE SWIPE ENFORCEMENT */
.ql-pricing-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1.5rem !important;
    padding-bottom: 2rem !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding-left: max(1.5rem, calc(50vw - 600px)) !important;
    padding-right: max(1.5rem, calc(50vw - 600px)) !important;
    scroll-behavior: smooth !important;
}

@media screen and (max-width: 992px) {
    .ql-card {
        min-width: 80vw !important;
        width: 80vw !important;
        flex: 0 0 80vw !important;
        scroll-snap-align: center !important;
    }
}

.ql-pricing-grid::-webkit-scrollbar {
    display: block !important;
    height: 8px !important;
    background: #e1e1e8 !important;
    border-radius: 10px !important;
}
.ql-pricing-grid::-webkit-scrollbar-thumb {
    background: #1d1d1f !important;
    border-radius: 10px !important;
}

/* 2. TEXT CUTOFF FIX FOR BADGE */
.ql-badge {
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    line-height: 1.2 !important;
    max-width: 90% !important;
}

/* 3. VIP ENTERPRISE BANNER CENTER FIX */
.ql-enterprise-banner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 4rem 2rem !important;
    margin: 4rem auto 2rem !important;
    max-width: 100% !important;
    background: linear-gradient(135deg, #111 0%, #1a1a1c 100%) !important;
    border-radius: 30px !important;
}

.ql-ent-left {
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.ql-ent-right {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 2rem !important;
}

.ql-ent-title {
    text-align: center !important;
}

.ql-ent-desc {
    text-align: center !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.ql-swipe-indicator-mobile {
    display: none;
}
@media screen and (max-width: 992px) {
    .ql-swipe-indicator-mobile {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        background: #1d1d1f !important;
        color: #fff !important;
        padding: 1rem 2rem !important;
        border-radius: 30px !important;
        margin: 0 auto 2rem !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
        width: max-content !important;
        max-width: 90vw !important;
        animation: pulseIndicator 2s infinite !important;
    }
}
@keyframes pulseIndicator {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
    50% { transform: scale(1.03); box-shadow: 0 15px 40px rgba(149,191,71,0.3); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
}

/* ======================================================================= */
