/* ===== Who We Are - Bold & Visionary Design ===== */
:root {
  --white: #ffffff;
  --blue: #1e3a8a;
  --blue-light: #3b82f6;
  --blue-dark: #1e2d5f;
  --blue-pale: #eff6ff;
  --black: #0f172a;
  --gray-dark: #374151;
  --gray-medium: #6b7280;
  --gray-light: #f8fafc;
  --border: #e2e8f0;
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.main-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav-container { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.5rem; }
.nav-logo { z-index: 1001; }
.logo-image { height: 40px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 0.3rem; align-items: center; }
.nav-link { text-decoration: none; color: var(--gray-dark); font-weight: 500; font-size: 0.9rem; padding: 0.6rem 1rem; border-radius: 8px; transition: all 0.3s ease; }
.nav-link:hover { color: var(--blue); background: var(--blue-pale); }
.nav-link.active { color: var(--white); background: var(--blue); font-weight: 600; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger-line { width: 24px; height: 2.5px; background: var(--black); border-radius: 4px; transition: all 0.3s ease; }

/* ===== Common ===== */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; background: var(--blue-pale); color: var(--blue); padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.text-gradient { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header p { color: var(--gray-medium); font-size: 0.95rem; }

/* ===== Hero ===== */
.about-hero {
  background: linear-gradient(135deg, #060810 0%, #0f172a 50%, #1a1f3a 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
}

.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: floatUp 8s infinite;
  opacity: 0;
}

.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 25%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { left: 40%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 55%; animation-delay: 3s; }
.hero-particles span:nth-child(5) { left: 70%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { left: 85%; animation-delay: 5s; }
.hero-particles span:nth-child(7) { left: 15%; animation-delay: 6s; }
.hero-particles span:nth-child(8) { left: 60%; animation-delay: 7s; }

@keyframes floatUp {
  0% { bottom: -10%; opacity: 0; transform: translateY(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { bottom: 110%; opacity: 0; transform: translateY(-100px); }
}

.about-hero-content { position: relative; z-index: 1; text-align: center; max-width: 750px; margin: 0 auto; }

.hero-tag {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  color: #93c5fd;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border: 1px solid rgba(59,130,246,0.3);
}

.about-hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-hero-content p {
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== Mission & Vision Bold ===== */
.mission-vision-bold { padding: 0; margin-top: -50px; position: relative; z-index: 2; }

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

.mv-bold-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.mv-bold-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.15); }

.mv-bold-card.mission { border-top: 4px solid var(--blue); }
.mv-bold-card.vision { border-top: 4px solid var(--blue-light); }

.mv-icon-large {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white;
  margin-bottom: 1.5rem;
}

.mv-label { display: inline-block; color: var(--blue); font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.8rem; }

.mv-bold-card h2 { font-size: 1.8rem; color: var(--black); margin-bottom: 1rem; line-height: 1.3; font-weight: 800; }
.mv-bold-card p { color: var(--gray-medium); line-height: 1.8; font-size: 1rem; }

/* ===== Our Story Modern ===== */
.our-story-modern { padding: 6rem 0; background: var(--white); }

.story-modern-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.story-modern-text h2 { font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2; }
.story-modern-text p { color: var(--gray-dark); font-size: 1rem; line-height: 1.8; margin-bottom: 1.2rem; }

.story-stats-row { display: flex; gap: 3rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.story-stat { text-align: center; }
.stat-big { display: block; font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.story-stat span:last-child { color: var(--gray-medium); font-size: 0.85rem; }

.story-modern-visual { position: relative; height: 450px; }

.visual-shape { position: absolute; border-radius: 24px; }
.shape-1 { width: 250px; height: 250px; background: var(--blue-pale); top: 0; right: 0; }
.shape-2 { width: 200px; height: 200px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); bottom: 0; left: 0; opacity: 0.1; border-radius: 50%; }

.visual-image { position: absolute; top: 30px; left: 30px; right: 30px; bottom: 30px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.visual-image img { width: 100%; height: 100%; object-fit: cover; }

.visual-floating-card {
  position: absolute;
  bottom: -10px; right: -10px;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 600; color: var(--blue);
}

.visual-floating-card i { color: #10b981; font-size: 1.3rem; }

/* ===== Values Energetic ===== */
.values-energetic { padding: 6rem 0; background: var(--blue-pale); }

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

.value-energetic-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.value-energetic-card:hover { border-color: var(--blue-light); transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.ve-number {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 3rem; font-weight: 900;
  color: #e2e8f0; line-height: 1;
}

.ve-icon {
  width: 55px; height: 55px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white;
  margin-bottom: 1.2rem;
}

.value-energetic-card h3 { font-size: 1.3rem; color: var(--black); margin-bottom: 0.6rem; }
.value-energetic-card p { color: var(--gray-medium); line-height: 1.7; font-size: 0.9rem; }

/* ===== Work Speaks ===== */
.work-speaks { padding: 6rem 0; background: var(--white); }

.work-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.work-showcase-card {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.work-showcase-card:hover { border-color: var(--blue-light); transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.work-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.work-category { background: var(--blue); color: white; padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.work-card-icon { font-size: 1.5rem; color: var(--blue-light); }

.work-showcase-card h3 { font-size: 1.2rem; color: var(--black); margin-bottom: 0.6rem; }
.work-showcase-card p { color: var(--gray-medium); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }

.work-tech-stack { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.work-tech-stack span { background: var(--white); padding: 0.3rem 0.8rem; border-radius: 6px; font-size: 0.75rem; color: var(--blue); font-weight: 500; border: 1px solid var(--border); }

.work-invitation { text-align: center; margin-top: 2.5rem; padding: 1.5rem; background: linear-gradient(135deg, var(--blue-pale), #dbeafe); border-radius: 16px; }
.work-invitation p { color: var(--blue); font-size: 1rem; }
.work-invitation i { margin-right: 0.5rem; }

/* ===== Meet Makers ===== */
.meet-makers { padding: 6rem 0; background: var(--blue-pale); }

.makers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }

.maker-card { background: var(--white); border-radius: 20px; overflow: hidden; transition: all 0.3s ease; }
.maker-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.maker-image-wrap { position: relative; height: 300px; overflow: hidden; }
.maker-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.maker-card:hover .maker-image-wrap img { transform: scale(1.05); }

.maker-overlay { position: absolute; bottom: -50px; left: 0; width: 100%; display: flex; justify-content: center; transition: bottom 0.3s ease; }
.maker-card:hover .maker-overlay { bottom: 20px; }
.maker-overlay a { width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: all 0.3s; }
.maker-overlay a:hover { background: var(--blue); color: white; }

.maker-info { padding: 1.5rem; text-align: center; }
.maker-info h3 { font-size: 1.1rem; color: var(--black); margin-bottom: 0.3rem; }
.maker-info span { color: var(--blue); font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 0.5rem; }
.maker-info p { color: var(--gray-medium); font-size: 0.85rem; }

/* ===== CTA Bold ===== */
.about-cta-bold { padding: 5rem 0; background: linear-gradient(135deg, var(--black) 0%, var(--blue-dark) 100%); }

.cta-bold-content { text-align: center; }
.cta-bold-content h2 { color: white; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; }
.cta-bold-content p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 2.5rem; }

.cta-bold-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.btn-primary-glow {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(59,130,246,0.4);
}
.btn-primary-glow:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(59,130,246,0.6); }

.btn-secondary-line {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s;
}
.btn-secondary-line:hover { border-color: white; background: rgba(255,255,255,0.05); }

/* ===== Footer ===== *//* ===== Footer ===== */
.footer-modern {
  background: #06080f;
  position: relative;
}

.footer-top {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-col-large {
  color: #cbd5e1;
}

.footer-logo-wrap {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: #64748b;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #3b82f6;
}

.newsletter-form button {
  padding: 0.75rem 1.2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.6rem;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links-list a i {
  font-size: 0.6rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links-list a:hover i {
  color: #60a5fa;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-text span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-text p {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}
.contact-text a{
  text-decoration: none;
  color: #94a3b8;
}
/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-bottom-content strong {
  color: white;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

.dot-divider {
  width: 3px;
  height: 3px;
  background: #4b5563;
  border-radius: 50%;
}

/* ===== Responsive Footer ===== */
@media (max-width: 1024px) {
  .footer-grid-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-col-large {
    grid-column: 1;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links-list a {
    justify-content: center;
  }
  
  .footer-contact-list li {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .newsletter-form {
    max-width: 350px;
    margin: 0 auto;
  }
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .mv-bold-grid { grid-template-columns: 1fr; }
  .makers-grid { grid-template-columns: repeat(2, 1fr); }
  .work-showcase { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: white; flex-direction: column; justify-content: center; gap: 1.5rem; transform: translateX(-100%); transition: 0.4s; z-index: 1000; }
  .nav-menu.active { transform: translateX(0); }
  
  .story-modern-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-modern-visual { height: 350px; }
  .values-energetic-grid { grid-template-columns: 1fr; }
  .makers-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .footer-grid-main { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
  .about-hero-content h1 { font-size: 2.2rem; }
  .mv-bold-card { padding: 2rem; }
  .story-stats-row { flex-direction: column; gap: 1rem; }
}
/* ===== Exciting Values Section ===== */
.values-exciting {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.values-exciting::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.values-exciting::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,0.04) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
}

.section-tag-glow {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(30,58,138,0.2);
}

/* Values Showcase Grid */
.values-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Flip Card */
.value-showcase-card {
  perspective: 1000px;
  height: 320px;
}

.value-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.value-showcase-card:hover .value-card-inner {
  transform: rotateY(180deg);
}

.value-front,
.value-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
}

/* Front Side */
.value-front {
  background: white;
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.value-showcase-card:hover .value-front {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.value-showcase-card:nth-child(2) .value-emoji { animation-delay: 0.3s; }
.value-showcase-card:nth-child(3) .value-emoji { animation-delay: 0.6s; }
.value-showcase-card:nth-child(4) .value-emoji { animation-delay: 0.9s; }

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

.value-front h3 {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.value-front p {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

.value-hover-text {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Back Side */
.value-back {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  transform: rotateY(180deg);
  text-align: center;
  color: white;
}

.value-back h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-back p {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.value-back ul {
  list-style: none;
  text-align: left;
}

.value-back ul li {
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-back ul li i {
  color: #10b981;
  font-size: 0.75rem;
}

/* Values Quote */
.values-quote {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  border: 1px solid #e2e8f0;
}

.values-quote i {
  font-size: 2rem;
  color: var(--blue);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.values-quote p {
  font-size: 1.2rem;
  color: var(--gray-dark);
  font-style: italic;
  line-height: 1.6;
}

.values-quote p span {
  color: var(--blue);
  font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .values-showcase {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .value-showcase-card {
    height: 280px;
  }
  
  .value-emoji {
    font-size: 2.8rem;
  }
  
  .values-quote {
    padding: 1.5rem;
  }
  
  .values-quote p {
    font-size: 1rem;
  }
}



/* my code  */


/* =========================================================
   FOOTER BOTTOM LINKS
   ========================================================= */

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-bottom-links a:hover {
  color: #6c4cff;
}

.dot-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}


/* =========================================================
   POLICY MODAL
   ========================================================= */

.policy-modal {
  position: fixed;
  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  z-index: 99999;
}

.policy-modal.active {
  display: flex;
}


/* Dark background */

.policy-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(10, 8, 35, 0.75);

  backdrop-filter: blur(5px);
}


/* =========================================================
   MODAL CONTAINER
   ========================================================= */

.policy-modal-content {
  position: relative;

  width: min(760px, 100%);
  max-height: 85vh;

  overflow: hidden;

  background: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.30);

  z-index: 2;

  animation: policyModalIn 0.25s ease;
}


/* Animation */

@keyframes policyModalIn {

  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.policy-modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: #f1f2f6;

  color: #333;

  font-size: 15px;

  cursor: pointer;

  transition: all 0.2s ease;

  z-index: 3;
}

.policy-modal-close:hover {
  background: #321b9b;
  color: #ffffff;
  transform: rotate(90deg);
}


/* =========================================================
   MODAL HEADER
   ========================================================= */

.policy-modal-header {
  padding: 30px 35px 20px;

  border-bottom: 1px solid #e7e8ee;
}

.policy-label {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 8px;

  color: #321b9b;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.6px;
}

.policy-modal-header h2 {
  margin: 0;

  color: #111827;

  font-size: 26px;

  line-height: 1.3;
}


/* =========================================================
   MODAL BODY
   ========================================================= */

.policy-modal-body {
  max-height: calc(85vh - 120px);

  overflow-y: auto;

  padding: 25px 35px 35px;

  color: #555b6e;

  font-size: 14px;

  line-height: 1.75;
}

.policy-modal-body h3 {
  margin: 22px 0 8px;

  color: #1f2937;

  font-size: 17px;
}

.policy-modal-body h3:first-child {
  margin-top: 0;
}

.policy-modal-body p {
  margin: 0 0 14px;
}

.policy-modal-body ul {
  margin: 8px 0 16px;

  padding-left: 22px;
}

.policy-modal-body li {
  margin-bottom: 7px;
}

.policy-modal-body a {
  color: #321b9b;

  text-decoration: none;

  font-weight: 600;
}

.policy-modal-body a:hover {
  text-decoration: underline;
}


/* =========================================================
   PREVENT BACKGROUND SCROLL
   ========================================================= */

body.policy-modal-open {
  overflow: hidden;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .footer-bottom-links {
    justify-content: center;

    margin-top: 10px;
  }

  .policy-modal {
    padding: 12px;
  }

  .policy-modal-content {
    width: 100%;
    max-height: 90vh;

    border-radius: 14px;
  }

  .policy-modal-header {
    padding: 24px 20px 18px;
  }

  .policy-modal-header h2 {
    font-size: 21px;
  }

  .policy-modal-body {
    max-height: calc(90vh - 110px);

    padding: 20px;
  }

  .policy-modal-close {
    top: 12px;
    right: 12px;
  }

}

