/* ============================================================
   TeknikEv — Apple-Inspired Precision Tech & Elegance
   Typography: Plus Jakarta Sans / SF Style
   Features: Auto Day/Night Detection + Subtle Micro-Animations
   ============================================================ */

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

/* ── LIGHT THEME (GÜNDÜZ MODU) ──────────────────────────── */
:root {
  --apple-blue:        #0071E3;
  --apple-blue-hover:  #0077ED;
  --apple-blue-subtle: rgba(0, 113, 227, 0.08);
  
  --apple-green:       #10B981;
  --apple-green-subtle:rgba(16, 185, 129, 0.1);
  --apple-gold:        #F5A623;
  --apple-red:         #FF3B30;
  --apple-xiaomi:      #FF6900;
  --apple-huawei:      #CF0A2C;

  /* Day Mode Surfaces */
  --apple-bg:          #FBFBFD;
  --apple-surface:     #FFFFFF;
  --apple-surface-2:   #F5F5F7;
  --apple-surface-3:   #E8E8ED;
  --apple-border:      rgba(0, 0, 0, 0.08);
  --apple-glass-nav:   rgba(251, 251, 253, 0.85);

  /* Day Mode Typography */
  --text-white:        #1D1D1F;
  --text-titanium:     #6E6E73;

  /* Shadows & Cards */
  --apple-shadow:      0 20px 40px -15px rgba(0, 0, 0, 0.07);
  --apple-shadow-sm:   0 2px 10px rgba(0, 0, 0, 0.04);
  --hero-card-bg:      linear-gradient(180deg, #FFFFFF 0%, #F5F5F7 100%);
  --hero-card-border:  rgba(0, 0, 0, 0.08);
  --spotlight-color:   rgba(0, 113, 227, 0.09);
  --hero-title-grad:   linear-gradient(180deg, #1D1D1F 0%, #434347 100%);

  --r-pill:            9999px;
  --r-apple-sm:        12px;
  --r-apple-md:        18px;
  --r-apple-lg:        26px;
  --r-apple-xl:        34px;

  --font:              'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  --nav-h:             64px;
  --bottom-bar-h:      60px;
  --ease-apple:        cubic-bezier(0.16, 1, 0.3, 1);
  --transition:        all 0.3s var(--ease-apple);
}

/* ── DARK THEME (GECE MODU) ─────────────────────────────── */
[data-theme="dark"] {
  --apple-bg:          #000000;
  --apple-surface:     #161617;
  --apple-surface-2:   #1D1D1F;
  --apple-surface-3:   #2C2C2E;
  --apple-border:      rgba(255, 255, 255, 0.12);
  --apple-glass-nav:   rgba(0, 0, 0, 0.85);

  --text-white:        #F5F5F7;
  --text-titanium:     #A1A1A6;

  --apple-shadow:      0 20px 40px -15px rgba(0, 0, 0, 0.6);
  --apple-shadow-sm:   0 4px 14px rgba(0, 0, 0, 0.4);
  --hero-card-bg:      linear-gradient(180deg, #1C1C1E 0%, #121214 100%);
  --hero-card-border:  rgba(255, 255, 255, 0.12);
  --spotlight-color:   rgba(0, 113, 227, 0.18);
  --hero-title-grad:   linear-gradient(180deg, #FFFFFF 0%, #A1A1A6 100%);
}

/* Auto Device Dark Mode if user hasn't overridden */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --apple-bg:          #000000;
    --apple-surface:     #161617;
    --apple-surface-2:   #1D1D1F;
    --apple-surface-3:   #2C2C2E;
    --apple-border:      rgba(255, 255, 255, 0.12);
    --apple-glass-nav:   rgba(0, 0, 0, 0.85);

    --text-white:        #F5F5F7;
    --text-titanium:     #A1A1A6;

    --apple-shadow:      0 20px 40px -15px rgba(0, 0, 0, 0.6);
    --apple-shadow-sm:   0 4px 14px rgba(0, 0, 0, 0.4);
    --hero-card-bg:      linear-gradient(180deg, #1C1C1E 0%, #121214 100%);
    --hero-card-border:  rgba(255, 255, 255, 0.12);
    --spotlight-color:   rgba(0, 113, 227, 0.18);
    --hero-title-grad:   linear-gradient(180deg, #FFFFFF 0%, #A1A1A6 100%);
  }
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background-color: var(--apple-bg);
  color: var(--text-titanium);
  line-height: 1.6;
  font-size: 15px;
  padding-bottom: var(--bottom-bar-h);
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

a:hover {
  color: var(--apple-blue-hover);
}

/* ── SUBTLE MICRO-ANIMATIONS ────────────────────────────── */
@keyframes ambientPulse {
  0%   { transform: translateX(-50%) scale(1); opacity: 0.85; }
  50%  { transform: translateX(-50%) scale(1.08); opacity: 1; }
  100% { transform: translateX(-50%) scale(1); opacity: 0.85; }
}

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

@keyframes badgeShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll Reveal Classes (Zero Lag, Hardware Accelerated) */
.reveal-init {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; }

.text-center {
  text-align: center;
}

.hero-gradient-text {
  background: var(--hero-title-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-blue-gradient {
  background: linear-gradient(135deg, #0071E3 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ── APPLE PILL BUTTONS ─────────────────────────────────── */
.btn-apple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

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

.btn-apple-primary {
  background: var(--apple-blue);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 113, 227, 0.35);
}
.btn-apple-primary:hover {
  background: var(--apple-blue-hover);
  color: #FFFFFF;
  box-shadow: 0 8px 28px rgba(0, 113, 227, 0.5);
  transform: translateY(-2px);
}

.btn-apple-glass {
  background: var(--apple-surface-2);
  color: var(--text-white);
  border: 1px solid var(--apple-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-apple-glass:hover {
  background: var(--apple-surface-3);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-apple-wa {
  background: var(--apple-surface-2);
  color: var(--text-white) !important;
  border: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-apple-wa i,
.btn-apple-wa .fa-whatsapp {
  color: #25D366;
}
.btn-apple-wa:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: #25D366;
  color: #FFFFFF !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.btn-apple-link {
  color: var(--apple-blue);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-apple-link:hover {
  color: var(--apple-blue-hover);
  gap: 10px;
}

.btn-apple-lg {
  min-height: 52px;
  padding: 14px 32px;
  font-size: 1.02rem;
}

/* ── BRAND ICONS & BADGES (APPLE, SAMSUNG, XIAOMI, HUAWEI) */
.brand-icon-svg {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-icon-apple   { color: var(--text-white); }
.brand-icon-samsung { color: #1428A0; }
.brand-icon-xiaomi  { color: var(--apple-xiaomi); }
.brand-icon-huawei  { color: var(--apple-huawei); }

.brand-pick-btn {
  background: var(--apple-surface);
  border: 1px solid var(--apple-border);
  border-radius: var(--r-apple-md);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-white);
  font-weight: 700;
}

.brand-pick-btn:hover {
  background: var(--apple-surface-2);
  border-color: var(--apple-blue);
  transform: translateY(-3px);
  box-shadow: var(--apple-shadow-sm);
}

.brand-pick-btn.active {
  background: var(--apple-blue-subtle);
  border-color: var(--apple-blue);
  color: var(--apple-blue);
  box-shadow: 0 0 0 2px var(--apple-blue);
}

/* ── APPLE FROSTED NAVBAR ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--apple-glass-nav);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--apple-border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  width: 100%;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo img {
  height: 32px;
  width: auto;
  border-radius: 6px;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
}

.nav-logo-text span {
  color: var(--apple-blue);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
  list-style: none;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  color: var(--text-titanium);
  font-weight: 500;
  font-size: 0.88rem;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
  background: var(--apple-surface-2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 899px) {
  .nav-actions .btn-apple-wa {
    display: none !important;
  }
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  background: var(--apple-surface-2);
  border: 1px solid var(--apple-border);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  background: var(--apple-surface-3);
  transform: rotate(15deg) scale(1.08);
}

.nav-wa-text {
  display: none;
}

@media (min-width: 480px) {
  .nav-wa-text {
    display: inline;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: var(--apple-surface-2);
  border: 1px solid var(--apple-border);
  border-radius: var(--r-pill);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO SECTION (APPLE KEYNOTE ELEGANCE) ──────────────── */
.apple-hero {
  position: relative;
  padding: 50px 0 60px;
  background: var(--apple-bg);
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--apple-border);
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .apple-hero {
    padding: 80px 0 80px;
  }
}

.apple-spotlight {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, var(--spotlight-color) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: ambientPulse 8s ease-in-out infinite;
}

/* ── BESPOKE APPLE HERO PRELUDE (STUDIO SIGNATURE) ──────── */
.apple-hero-prelude {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-titanium);
  margin-bottom: 22px;
  padding: 6px 18px;
  background: var(--apple-surface-2);
  border-radius: var(--r-pill);
  border: 1px solid var(--apple-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--apple-shadow-sm);
  transition: var(--transition);
}

.apple-hero-prelude:hover {
  border-color: rgba(0, 113, 227, 0.4);
  transform: translateY(-2px);
}

.prelude-location {
  color: var(--apple-blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}

.prelude-location::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--apple-blue);
  box-shadow: 0 0 10px var(--apple-blue);
  display: inline-block;
}

.prelude-sep {
  opacity: 0.4;
  font-weight: 300;
}

.prelude-desc {
  color: var(--text-white);
  font-weight: 600;
}

.apple-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--apple-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: var(--apple-blue-subtle);
  border: 1px solid rgba(0, 113, 227, 0.15);
}

.apple-hero-title {
  max-width: 820px;
  margin: 0 auto 18px;
}

.apple-hero-subtitle {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--text-titanium);
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 400;
}

.apple-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Brand Quick Ribbon in Hero */
.brand-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--apple-surface);
  border: 1px solid var(--apple-border);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition);
}

.brand-chip:hover {
  transform: translateY(-2px);
  border-color: var(--apple-blue);
}

/* Hero Centerpiece Visual */
.apple-hero-visual {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.apple-visual-card {
  background: var(--hero-card-bg);
  border: 1px solid var(--hero-card-border);
  border-radius: var(--r-apple-lg);
  padding: 32px 20px;
  box-shadow: var(--apple-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-apple);
}

.apple-visual-card:hover {
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .apple-visual-card {
    padding: 44px 36px;
    border-radius: var(--r-apple-xl);
  }
}

.apple-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.apple-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px;
  transition: transform 0.3s ease;
}

.apple-metric-item:hover {
  transform: scale(1.04);
}

.apple-metric-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.apple-metric-label {
  font-size: 0.82rem;
  color: var(--text-titanium);
  font-weight: 500;
}

/* ── BENTO SHOWCASE (TITANIUM PRECISION) ─────────────────── */
.apple-section {
  padding: 60px 0;
  width: 100%;
}

@media (min-width: 768px) {
  .apple-section {
    padding: 90px 0;
  }
}

.apple-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.apple-section-header h2 {
  margin-bottom: 12px;
}

.apple-section-header p {
  color: var(--text-titanium);
  font-size: 1.02rem;
}

.apple-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .apple-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.apple-bento-card {
  background: var(--apple-surface);
  border: 1px solid var(--apple-border);
  border-radius: var(--r-apple-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: var(--apple-shadow-sm);
}

@media (min-width: 768px) {
  .apple-bento-card {
    padding: 38px 32px;
  }
}

.apple-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--apple-shadow);
  border-color: rgba(0, 113, 227, 0.3);
}

.apple-bento-card.featured {
  background: var(--apple-surface);
}

@media (min-width: 768px) {
  .apple-bento-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
  }
}

.apple-bento-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-apple-sm);
  background: var(--apple-surface-2);
  color: var(--apple-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.apple-bento-card:hover .apple-bento-icon {
  transform: scale(1.1);
}

.apple-bento-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-white);
}

.apple-bento-card p {
  color: var(--text-titanium);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.apple-bento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--apple-border);
  font-size: 0.88rem;
  color: var(--text-white);
  font-weight: 600;
}

/* ── 3-STEP APPLE CARE TIMELINE ─────────────────────────── */
.apple-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .apple-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.apple-step-card {
  background: var(--apple-surface);
  border: 1px solid var(--apple-border);
  border-radius: var(--r-apple-lg);
  padding: 30px 22px;
  text-align: left;
  transition: var(--transition);
  box-shadow: var(--apple-shadow-sm);
}

.apple-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--apple-shadow);
}

.apple-step-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--apple-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.apple-step-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.apple-step-card p {
  color: var(--text-titanium);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── APPLE TESTIMONIALS (LIVE GOOGLE REVIEWS) ────────── */
.apple-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .apple-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.apple-review-card {
  background: var(--apple-surface);
  border: 1px solid var(--apple-border);
  border-radius: var(--r-apple-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--apple-shadow-sm);
  transition: var(--transition);
  text-align: left;
}

.apple-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--apple-shadow);
  border-color: rgba(66, 133, 244, 0.35);
}

.apple-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.apple-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.apple-review-info {
  flex-grow: 1;
}

.apple-review-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.apple-review-source {
  font-size: 0.75rem;
  color: #4285F4;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.apple-stars {
  color: #FFB800;
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.apple-review-card p {
  color: var(--text-white);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
  font-style: normal;
}

.apple-review-footer {
  font-size: 0.78rem;
  color: var(--text-titanium);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--apple-border);
  padding-top: 10px;
}

/* ── APPLE INSTAGRAM WORKSHOP & REELS SHOWCASE ───────────── */
.apple-insta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .apple-insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .apple-insta-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.apple-insta-card {
  background: var(--apple-surface);
  border: 1px solid var(--apple-border);
  border-radius: var(--r-apple-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--apple-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.apple-insta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.apple-insta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 14px 34px rgba(225, 48, 108, 0.15);
}

.apple-insta-card:hover::before {
  opacity: 1;
}

.apple-insta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.apple-insta-tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: #E1306C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.apple-insta-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(225, 48, 108, 0.1);
  color: #E1306C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.apple-insta-card:hover .apple-insta-icon {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  color: #FFFFFF;
  transform: scale(1.1);
}

.apple-insta-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.apple-insta-desc {
  font-size: 0.85rem;
  color: var(--text-titanium);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.apple-insta-action {
  font-size: 0.82rem;
  font-weight: 600;
  color: #E1306C;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--apple-border);
  padding-top: 12px;
}

.apple-insta-action i {
  transition: transform 0.2s ease;
}

.apple-insta-card:hover .apple-insta-action i {
  transform: translateX(4px);
}

.btn-apple-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF !important;
  border: none;
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.35);
  white-space: normal !important;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}

.btn-apple-insta:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 22px rgba(225, 48, 108, 0.5);
  transform: translateY(-2px);
}

/* ── APPLE FAQ ACCORDION ────────────────────────────────── */
.apple-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apple-faq-item {
  background: var(--apple-surface);
  border: 1px solid var(--apple-border);
  border-radius: var(--r-apple-md);
  transition: all 0.25s ease;
  overflow: hidden;
}

.apple-faq-item:hover {
  border-color: rgba(0, 113, 227, 0.4);
}

.apple-faq-item summary {
  padding: 18px 20px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
}

.apple-faq-item summary::-webkit-details-marker {
  display: none;
}

.apple-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--apple-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--apple-blue);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.apple-faq-item[open] summary {
  color: var(--apple-blue);
}

.apple-faq-item[open] .apple-faq-icon {
  transform: rotate(180deg);
  background: var(--apple-blue);
  color: #FFFFFF;
}

.apple-faq-answer {
  padding: 0 20px 18px 20px;
  color: var(--text-titanium);
  font-size: 0.92rem;
  line-height: 1.65;
  border-top: 1px solid var(--apple-border);
  padding-top: 14px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--apple-surface);
  color: var(--text-titanium);
  padding: 40px 0 20px;
  border-top: 1px solid var(--apple-border);
  width: 100%;
  transition: background-color 0.3s ease;
}

@media (min-width: 992px) {
  .site-footer {
    padding: 56px 0 36px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 40px;
  }
}

.footer-brand p {
  color: var(--text-titanium);
  font-size: 0.88rem;
  margin-top: 10px;
  line-height: 1.6;
}

.footer-title {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

.footer-links a {
  color: var(--text-titanium);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--apple-blue);
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--apple-border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-titanium);
}

/* ── MOBILE BOTTOM BAR (iOS Dock Style) ─────────────────── */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-bar-h);
  background: var(--apple-glass-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--apple-border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 999;
  padding: 0 4px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@media (min-width: 992px) {
  .bottom-bar {
    display: none;
  }
}

.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-titanium);
  font-size: 0.68rem;
  font-weight: 600;
  gap: 2px;
  text-decoration: none;
  flex: 1;
  height: 100%;
}

.bottom-bar-item i {
  font-size: 1.15rem;
}

.bottom-bar-item.active {
  color: var(--apple-blue);
}

.bottom-bar-wa {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-top: -14px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* ── MOBILE DRAWER ──────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav.open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 300px;
  background: var(--apple-surface);
  border-left: 1px solid var(--apple-border);
  box-shadow: var(--apple-shadow);
  padding: 24px 20px;
  transform: translateX(100%);
  transition: transform 0.25s var(--ease-apple);
  display: flex;
  flex-direction: column;
}

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

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-nav-close {
  background: var(--apple-surface-2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-apple-sm);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--apple-surface-2);
}

.mobile-nav-links a.active {
  background: var(--apple-blue);
  color: #FFFFFF;
}

/* ── UTILITIES ──────────────────────────────────────────── */
.badge-apple {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--apple-surface-2);
  color: var(--text-white);
  border: 1px solid var(--apple-border);
}

/* ── BLOG & ARTICLES GRID ───────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--apple-surface);
  border: 1px solid var(--apple-border);
  border-radius: var(--r-apple-md);
  box-shadow: var(--apple-shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--apple-shadow);
  border-color: rgba(0, 113, 227, 0.3);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-body h3 {
  margin-top: 12px;
  margin-bottom: 8px;
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card-body p {
  color: var(--text-titanium);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-titanium);
}
