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

:root {
  --bg-primary: #15081b;
  --bg-secondary: #210d29;
  --bg-card: rgba(56, 21, 58, 0.35);
  --border-card: rgba(255, 171, 145, 0.15);
  --accent-gold: #ffd54f;
  --accent-gold-hover: #ffe082;
  --accent-coral: #ffab91;
  --text-primary: #ffffff;
  --text-secondary: #e2d9e6;
  --text-muted: #b3a4bc;
  --success: #00d186;
  --error: #ef4444;
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-glow: 0 0 35px rgba(255, 213, 79, 0.12);
  --shadow-button: 0 4px 20px rgba(255, 213, 79, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Gradients & Effects */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 171, 145, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 24, 93, 0.18) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 213, 79, 0.08);
  border: 1px solid rgba(255, 213, 79, 0.2);
  color: var(--accent-gold);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 213, 79, 0.03); border-color: rgba(255, 213, 79, 0.2); }
  50% { box-shadow: 0 0 25px rgba(255, 213, 79, 0.15); border-color: rgba(255, 213, 79, 0.45); }
}

/* Header & Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-coral));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 213, 79, 0.25);
}

.logo-icon svg {
  fill: #000;
  width: 22px;
  height: 22px;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #ffab91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Main Layout */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem 0;
  }
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

@media (max-width: 768px) {
  .hero-content p {
    margin: 0 auto 2.5rem;
  }
}

/* Premium Buttons */
.btn-group {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .btn-group {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ffd700 100%);
  color: #000000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, #ffe680 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-card);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Feature Cards Grid */
.features-section {
  padding: 5rem 0;
}

.features-section h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Phone / App Mockup Graphic & Showcase */
.mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.phone-mockup {
  width: 290px;
  height: 590px;
  background: #0d0614;
  border-radius: 42px;
  border: 10px solid #1f142b;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 130px;
  height: 22px;
  background: #1f142b;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  flex: 1;
  background: linear-gradient(180deg, #1b0724 0%, #2b0e35 50%, #1e0925 100%);
  display: flex;
  flex-direction: column;
  padding: 1.75rem 0.85rem 0.85rem 0.85rem;
  font-family: var(--font-body);
  position: relative;
  overflow-y: hidden;
}

/* Tab contents inside the mockup screen */
.screen-section {
  display: none;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: none;
}
.screen-section::-webkit-scrollbar {
  display: none;
}

.screen-section.active {
  display: flex;
  opacity: 1;
}

/* Header style within phone */
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.phone-header-title {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.phone-header-badge {
  font-size: 0.6rem;
  color: var(--accent-coral);
  font-weight: 700;
  background: rgba(255,171,145,0.1);
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
}

/* SCREEN: Horarios */
.phone-prayer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prayer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  color: var(--text-secondary);
}

.prayer-row.active {
  background: rgba(255, 213, 79, 0.08);
  border: 1px solid rgba(255, 213, 79, 0.2);
  color: var(--accent-gold);
  font-weight: 700;
}

/* SCREEN: Quran */
.quran-container {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.quran-verse-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.75rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quran-arabic {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: var(--accent-gold);
  line-height: 1.8;
  direction: rtl;
}

.quran-translation {
  font-size: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.4;
  text-align: left;
  direction: ltr;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 0.4rem;
}

.quran-player {
  background: rgba(56, 21, 58, 0.4);
  border: 1px solid rgba(255, 171, 145, 0.15);
  border-radius: 10px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quran-play-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-coral);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.quran-player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.quran-player-title {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--text-primary);
}

.quran-player-subtitle {
  font-size: 0.5rem;
  color: var(--text-muted);
}

.quran-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.quran-progress-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 45%;
  background: var(--accent-gold);
}

/* SCREEN: Hisn al-Muslim Duas */
.duas-search-input-mock {
  width: 100%;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.62rem;
  margin-bottom: 0.5rem;
}



.dua-item-header-mock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.dua-tag-mock {
  font-size: 0.45rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* SCREEN: Hisn al-Muslim Duas */
.dua-item-card-mock {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dua-item-header-mock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.4rem;
}

.dua-item-desc-mock {
  font-size: 0.68rem;
  color: var(--text-primary);
  font-weight: 700;
}

.dua-tag-mock {
  font-size: 0.48rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.dua-item-arabic-mock {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--accent-gold);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  font-weight: 600;
  margin: 0.2rem 0;
}

.dua-item-translation-mock {
  font-size: 0.62rem;
  color: var(--text-secondary);
  line-height: 1.45;
  text-align: left;
  font-style: italic;
}

.dua-item-ref-mock {
  font-size: 0.48rem;
  color: var(--text-muted);
  text-align: left;
  display: block;
  opacity: 0.7;
}

/* SCREEN: Devocion List */
.devocion-tools-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  padding-top: 0.25rem;
}

.devocion-tool-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: background 0.25s, border-color 0.25s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.devocion-tool-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.devocion-tool-icon-circle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.devocion-tool-details {
  flex: 1;
}

.devocion-tool-details span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.1rem;
}

.devocion-tool-details p {
  font-size: 0.52rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin: 0;
}

/* App Bottom Navigation Bar inside phone */
.phone-navbar {
  display: flex;
  justify-content: space-around;
  background: rgba(13, 6, 20, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.45rem 0;
  margin-top: auto;
  border-radius: 12px;
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.48rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  flex: 1;
}

.phone-nav-item.active {
  color: var(--accent-gold);
}

.phone-nav-item svg {
  width: 14px;
  height: 14px;
}

.phone-nav-item span {
  font-size: 0.42rem;
}

/* Auth Portal Container */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(80vh - 100px);
  padding: 2rem 0;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
  border-radius: 24px;
  pointer-events: none;
}

.auth-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.input-icon-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-icon-btn:hover {
  color: var(--text-secondary);
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

/* Animations */
.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.1);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 2rem auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.icon-status-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-status-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.icon-status-error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
}

@keyframes popScale {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* Interactive Simulator Section */
.simulator-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.simulator-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
}

.simulator-subtitle {
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
  font-size: 1.05rem;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .simulator-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.sim-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sim-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  width: 100%;
  color: var(--text-muted);
}

.sim-tab-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 213, 79, 0.2);
  transform: translateX(6px);
  color: var(--text-primary);
}

.sim-tab-btn.active {
  background: rgba(56, 21, 58, 0.45);
  border-color: var(--accent-coral);
  color: var(--text-primary);
  box-shadow: 0 8px 30px rgba(56, 21, 58, 0.25);
}

.sim-tab-btn.active .sim-tab-icon {
  background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-gold) 100%);
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 171, 145, 0.35);
}

.sim-tab-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sim-tab-icon svg {
  width: 22px;
  height: 22px;
}

.sim-tab-content {
  flex: 1;
}

.sim-tab-content h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.sim-tab-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.sim-tab-btn.active .sim-tab-content p {
  color: var(--text-secondary);
}

.sim-chevron {
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.sim-tab-btn.active .sim-chevron {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent-coral);
}

/* Philosophy Section */
.philosophy-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.philosophy-card {
  background: linear-gradient(135deg, rgba(56, 21, 58, 0.45) 0%, rgba(30, 9, 37, 0.35) 100%);
  border: 1px solid rgba(255, 171, 145, 0.18);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.philosophy-header h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.philosophy-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .philosophy-card {
    padding: 2.5rem;
  }
}

.philosophy-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.philosophy-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 213, 79, 0.08);
  border: 1px solid rgba(255, 213, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.philosophy-item-icon svg {
  width: 24px;
  height: 24px;
}

.philosophy-item h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.philosophy-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 1200px;
  margin: 0 auto;
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--accent-gold);
}


