/* ============================================================
   SECTIONS — Clean Enterprise Design
   ============================================================ */

/* ── ABOUT ── */
#about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.about-logo-big { width: 180px; height: 180px; object-fit: contain; animation: aboutFloat 6s ease-in-out infinite; position: relative; z-index: 1; }
.about-visual::before { content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, transparent 65%); animation: aboutFloat 6s ease-in-out infinite reverse; pointer-events: none; }
.about-visual::after { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; border: 1px solid var(--border); animation: orbitalSpin 25s linear infinite; pointer-events: none; }
@keyframes aboutFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.about-orbit { display: none; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { margin-bottom: 14px; font-size: 0.95rem; }
.founder-card { margin-top: 24px; padding: 18px 22px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.85); border: 1px solid var(--border); display: flex; align-items: center; gap: 14px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.founder-card:hover { border-color: rgba(79, 70, 229, 0.15); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 0 30px rgba(79, 70, 229, 0.04); transform: translateY(-3px); }
.founder-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.founder-info .name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.founder-info .role { font-size: 0.75rem; color: var(--text-muted); }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px; }
.pillar { padding: 12px; border-radius: var(--radius-md); background: var(--bg-elevated); border: 1px solid var(--border); text-align: center; font-size: 0.75rem; font-weight: 500; color: var(--text-secondary); transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: center; gap: 6px; }
.pillar svg { color: var(--accent); opacity: 0.7; flex-shrink: 0; }
.pillar:hover { border-color: var(--accent-muted); color: var(--accent); background: var(--accent-subtle); transform: translateY(-1px); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } .about-visual { min-height: 200px; } }

/* ── SERVICES — CLEAN ── */
/* ── SERVICES — CLEAN ── */
#services { background: var(--bg-elevated); }
#services .service-card {
  padding: 30px 24px;
}
.service-card {
  padding: 38px 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.02),
    0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #4F46E5, #7C3AED, #A78BFA, #4F46E5);
  background-size: 300% 100%;
  opacity: 0.15;
  transition: opacity 0.4s ease, background-position 0.6s ease;
  z-index: 2;
}
.service-card:hover {
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.04),
    0 22px 64px rgba(79, 70, 229, 0.09),
    0 0 50px rgba(79, 70, 229, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 1);
}
.service-card:hover::before { 
  opacity: 1; 
  animation: borderShimmerAnim 4s ease infinite;
}

/* Dual Floating Background Glowing Orbs */
.service-card-glow-1,
.service-card-glow-2 {
  position: absolute !important;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0 !important;
  filter: blur(35px);
  opacity: 0.45;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.service-card-glow-1 {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  top: -20px;
  right: -20px;
  animation: serviceGlowFloat1 10s ease-in-out infinite;
}
.service-card-glow-2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  bottom: -30px;
  left: -30px;
  animation: serviceGlowFloat2 12s ease-in-out infinite;
}
.service-card:hover .service-card-glow-1 {
  opacity: 0.8;
  transform: scale(1.15) translate(-10px, 10px);
}
.service-card:hover .service-card-glow-2 {
  opacity: 0.75;
  transform: scale(1.15) translate(10px, -10px);
}

@keyframes serviceGlowFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 15px) scale(1.08); }
}
@keyframes serviceGlowFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -12px) scale(1.1); }
}

/* Service Icon with Springy Motion */
.service-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.03));
  border: 1px solid rgba(79, 70, 229, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--accent);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.service-icon .lucide {
  width: 21px;
  height: 21px;
  stroke: var(--accent);
  stroke-width: 1.8px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), stroke 0.3s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.16), rgba(124, 58, 237, 0.08));
  border-color: rgba(79, 70, 229, 0.25);
  transform: translateY(-5px) scale(1.06) rotate(6deg);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.12);
}
.service-card:hover .service-icon .lucide {
  stroke: var(--accent-hover);
  transform: scale(1.12);
}

.service-card h3 { 
  font-size: 1.12rem; 
  margin-bottom: 12px; 
  font-weight: 700; 
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.3s ease;
}
.service-card:hover h3 {
  color: var(--accent);
}
.service-card p { 
  font-size: 0.85rem; 
  margin-bottom: 20px; 
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Service list with high-end sliding chevron bullet animation */
.service-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-list li {
  font-size: 0.78rem; 
  color: var(--text-secondary); 
  padding-left: 20px; 
  position: relative;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.service-list li::before {
  content: '→'; 
  position: absolute; 
  left: 0; 
  top: 0px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent); 
  opacity: 0.6;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.service-card:hover .service-list li {
  color: var(--text);
}
.service-card:hover .service-list li::before {
  transform: translateX(4px);
  opacity: 1;
  color: var(--accent-hover);
}

#services .grid-3 {
  gap: 18px;
}

#services .service-card {
  padding: 28px 22px;
}

#services .service-card h3 {
  margin-bottom: 10px;
}

#services .service-card p {
  margin-bottom: 16px;
}

#services .service-list {
  gap: 8px;
}

@media (min-width: 1300px) {
  #services .grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── CASE STUDIES / PROJECTS — CLEAN ── */
#case-studies { background: var(--bg); }
.project-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.02),
    0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
}
.project-card:hover {
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-8px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.04),
    0 22px 64px rgba(79, 70, 229, 0.09),
    0 0 50px rgba(79, 70, 229, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 1);
}
.project-banner {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-banner::after { display: none; }
.project-banner-icon { position: relative; z-index: 1; transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.project-card:hover .project-banner-icon { transform: scale(1.12) rotate(4deg); }
.banner-1 { background: linear-gradient(135deg, #EEF2FF, #E0E7FF); }
.banner-2 { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); }
.banner-3 { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }
.banner-4 { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.banner-5 { background: linear-gradient(135deg, #FFF7ED, #FFEDD5); }
.project-body { padding: 18px 20px; z-index: 2; position: relative; }
.project-body h3 { 
  margin-bottom: 6px; 
  font-size: 0.96rem; 
  font-weight: 700; 
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.35;
  transition: color 0.3s ease;
}
.project-card:hover .project-body h3 {
  color: var(--accent);
}
.project-body p { 
  font-size: 0.8rem; 
  margin-bottom: 12px; 
  line-height: 1.6;
  color: var(--text-secondary);
}
.tech-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.tech-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  padding: 2.5px 8px;
  border-radius: var(--radius-full);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-muted);
  color: var(--accent);
  letter-spacing: 0.02em;
}
.project-links { display: flex; gap: 8px; }
.project-links .btn { padding: 8px 16px; font-size: 0.78rem; }

/* ── PRICING — PREMIUM GLASSMORPHIC ── */
#pricing { 
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Pricing Grid */
.pricing-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px; 
  align-items: stretch; 
}

/* Pricing Toggle Wrapper */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 12px 0 54px;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  user-select: none;
  cursor: pointer;
}

.toggle-label.active {
  color: var(--text);
}

.pricing-switch {
  width: 58px;
  height: 32px;
  background: rgba(0, 0, 0, 0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.pricing-switch:hover {
  border-color: rgba(79, 70, 229, 0.25);
  background: rgba(0, 0, 0, 0.06);
}

.pricing-switch-handle {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 2.5px;
  left: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Switch Active State (Annual) */
.pricing-switch.active {
  background: linear-gradient(135deg, var(--accent), var(--violet));
  border-color: transparent;
}

.pricing-switch.active .pricing-switch-handle {
  transform: translateX(25px);
}

.pricing-discount-badge {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Glassmorphic Pricing Card (Light Mode default) */
.pricing-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.02),
    0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.04),
    0 22px 64px rgba(79, 70, 229, 0.09),
    0 0 50px rgba(79, 70, 229, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 1);
}

/* Pricing Card Featured (Premium Clean layout) */
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 255, 0.95));
  border-color: rgba(79, 70, 229, 0.25);
  box-shadow: 
    var(--shadow-card),
    0 10px 30px -10px rgba(79, 70, 229, 0.12),
    0 20px 50px -20px rgba(79, 70, 229, 0.08);
}

/* Animated top border shimmer - MATCHING FLAGSHIP PLATFORM CARD */
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #4F46E5, #7C3AED, #818CF8, #6366F1, #4F46E5);
  background-size: 300% 100%;
  animation: borderShimmerAnim 4s ease infinite;
  z-index: 3;
}

/* Featured Badge */
.featured-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 
    0 15px 35px -10px rgba(79, 70, 229, 0.18),
    0 25px 60px -20px rgba(79, 70, 229, 0.12);
}

.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
  z-index: 2;
}

.pricing-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: var(--text);
  z-index: 2;
}

.pricing-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
  z-index: 2;
  min-height: 56px; /* Equalizes text height */
}

/* Pricing Price section */
.pricing-price {
  margin-bottom: 24px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.price-amount {
  display: inline-flex;
  align-items: baseline;
}

.price-val {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.1;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  transition: opacity 0.25s ease;
}

/* Pricing features list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  z-index: 2;
}

.pricing-features li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

/* SVG check icon styling */
.pricing-check-icon {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-check-icon {
  transform: scale(1.15);
}

/* Pricing CTA buttons */
.pricing-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 2;
}

.pricing-card.featured .btn-primary {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.pricing-card.featured .btn-primary:hover {
  background: linear-gradient(135deg, #4338CA 0%, #6D28D9 100%);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
}

/* Pricing switch amount animation classes */
.price-val.changing {
  transform: translateY(-8px);
  opacity: 0;
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 30px;
  }
}

/* ── RESOURCES & INSIGHTS — PREMIUM ── */
#blog { background: var(--bg-elevated); }

/* Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.blog-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.02),
    0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4F46E5, #7C3AED, #A78BFA);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease, background-position 0.6s ease;
  z-index: 2;
}
.blog-card:hover {
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-8px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.04),
    0 22px 64px rgba(79, 70, 229, 0.09),
    0 0 50px rgba(79, 70, 229, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 1);
}
.blog-card:hover::before { opacity: 1; background-position: 100% 0; }

/* Image Banner */
.blog-img {
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}
.blog-img span {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--ease);
}
.blog-card:hover .blog-img span {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
  background: rgba(255, 255, 255, 0.95);
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-img img { transform: scale(1.06); }

/* Gradient Banners */
.blog-img-1 {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 40%, #C7D2FE 100%);
}
.blog-img-2 {
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 40%, #DDD6FE 100%);
}
.blog-img-3 {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 40%, #A7F3D0 100%);
}
.blog-img-4 {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 40%, #BFDBFE 100%);
}
.blog-img-5 {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 40%, #BAE6FD 100%);
}

/* Body */
.blog-body {
  padding: 18px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Meta Info */
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.blog-cat {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-muted);
  display: inline-block;
  line-height: 1.3;
}
.blog-date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Heading */
.blog-body h3 {
  font-size: 0.98rem;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.3s ease;
}
.blog-card:hover .blog-body h3 {
  color: var(--accent);
}

/* Description */
.blog-body p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.6;
  flex: 1;
}

/* Read More Link */
.blog-read-more {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
  letter-spacing: 0.01em;
}
.blog-read-more::after {
  content: '\2192';
  font-size: 0.9rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0.6;
}
.blog-read-more:hover {
  gap: 10px;
  color: var(--accent-hover);
}
.blog-read-more:hover::after {
  transform: translateX(4px);
  opacity: 1;
}

/* CTA within blog section */
.blog-section-cta {
  text-align: center;
  margin-top: 56px;
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-img { height: 180px; }
  .blog-body { padding: 20px 20px 24px; }
}

/* ── CONTACT — PREMIUM WORLD-CLASS ENHANCED ── */
.contact-premium {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* ── Animated floating orbs ── */
.contact-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.contact-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: contactOrbFloat1 12s ease-in-out infinite;
}

.contact-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  bottom: 5%;
  right: -8%;
  animation: contactOrbFloat2 15s ease-in-out infinite;
}

@keyframes contactOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes contactOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.08); }
  66% { transform: translate(20px, -40px) scale(0.92); }
}

/* ── Dot grid pattern ── */
.contact-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 70%);
}

/* ── Contact grid layout ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── LEFT SIDE — Contact Info Panel ── */
.contact-info-panel {
  position: relative;
}

.contact-premium .section-title {
  margin-bottom: 16px;
}

.contact-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 420px;
}

/* ── Contact details stack ── */
.contact-details-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Contact detail rows */
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 0 1px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.contact-detail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #4F46E5, #7C3AED);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.contact-detail:hover {
  border-color: rgba(79, 70, 229, 0.15);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 0 30px rgba(79, 70, 229, 0.04);
  background: rgba(255, 255, 255, 0.95);
}

.contact-detail:hover::before {
  opacity: 1;
}

/* Contact icon container */
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.04));
  border: 1px solid rgba(79, 70, 229, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-detail:hover .contact-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(124, 58, 237, 0.08));
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(79, 70, 229, 0.12);
}

.contact-icon svg {
  color: var(--accent);
  stroke: var(--accent);
}

/* Contact detail text */
.contact-detail-text {
  flex: 1;
  min-width: 0;
}

.contact-detail-text .label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
  line-height: 1;
}

.contact-detail-text .value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.contact-detail-text .value a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-detail-text .value a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.contact-detail-text .value a:hover {
  color: var(--accent-hover);
}

.contact-detail-text .value a:hover::after {
  width: 100%;
}

/* ── "What happens next?" Timeline ── */
.contact-timeline {
  margin-top: 32px;
  padding: 24px 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.contact-timeline-title {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

/* Vertical connector line */
.contact-timeline-steps::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 1.5px;
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.2), rgba(124, 58, 237, 0.15), rgba(79, 70, 229, 0.08));
  z-index: 0;
}

.contact-timeline-step {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.contact-timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.06));
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-timeline-dot span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.contact-timeline-step:hover .contact-timeline-dot {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.18), rgba(124, 58, 237, 0.1));
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 0 16px rgba(79, 70, 229, 0.12);
  transform: scale(1.1);
}

.contact-timeline-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* Legacy .contact-card — keep for backward compat */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(8px);
}
.contact-card:hover {
  border-color: rgba(79, 70, 229, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 0 30px rgba(79, 70, 229, 0.04);
}
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.04));
  border: 1px solid rgba(79, 70, 229, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-card-text h4 { font-size: 0.78rem; font-weight: 600; margin-bottom: 2px; }
.contact-card-text p { font-size: 0.82rem; color: var(--text-secondary); }
.contact-card-text a { color: var(--accent); text-decoration: none; }

/* ── RIGHT SIDE — Contact Form ── */
.contact-form {
  padding: 44px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--border);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 6px 16px rgba(0, 0, 0, 0.025),
    0 0 60px rgba(79, 70, 229, 0.04),
    0 0 120px rgba(79, 70, 229, 0.02);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Decorative top gradient */
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4F46E5, #7C3AED, #818CF8, #6366F1, #4F46E5);
  background-size: 300% 100%;
  animation: borderShimmerAnim 4s ease infinite;
}

/* Ambient light inside form */
.contact-form::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

/* Form header group */
.contact-form-header {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.contact-form h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.contact-form-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.form-group:focus-within label {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  background: rgba(250, 250, 248, 0.8);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.88rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  resize: none;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23A1A1AA' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
  font-weight: 400;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(250, 250, 248, 0.95);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.06), 0 2px 8px rgba(79, 70, 229, 0.05);
  background: var(--bg-surface);
}

.form-group select option {
  background: var(--bg-surface);
  color: var(--text);
}

.form-group textarea {
  min-height: 120px;
  line-height: 1.6;
}

/* Submit button — premium with shimmer */
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.92rem;
  padding: 16px;
  margin-top: 8px;
  background: linear-gradient(135deg, #4F46E5 0%, #6D28D9 50%, #4F46E5 100%);
  background-size: 250% 100%;
  color: #fff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.22), 0 1px 3px rgba(79, 70, 229, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  letter-spacing: 0.01em;
}

.form-submit:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.25), 0 4px 12px rgba(79, 70, 229, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  filter: brightness(1.05);
}

.form-submit:active {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* ── Form trust badge ── */
.form-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.form-trust-badge svg {
  color: var(--accent);
  stroke: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

.form-trust-badge span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .contact-detail { padding: 14px 18px; }
  .contact-orb-1 { width: 300px; height: 300px; }
  .contact-orb-2 { width: 250px; height: 250px; }
}

@media (max-width: 480px) {
  .contact-form { padding: 28px 20px; }
  .contact-form h3 { font-size: 1.1rem; margin-bottom: 6px; }
  .contact-detail { gap: 12px; }
  .contact-icon { width: 38px; height: 38px; }
  .contact-timeline { padding: 20px 18px; }
}

/* Form Validation States — Premium Glowing Crimson Glass & Shake */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.06), 0 2px 8px rgba(239, 68, 68, 0.04);
  background: rgba(254, 242, 242, 0.45);
}

.form-group.invalid label {
  color: #EF4444;
}

.form-group.invalid {
  animation: shakeError 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shakeError {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
  40%, 60% { transform: translate3d(3px, 0, 0); }
}

/* ── CTA BANNER ── */
.cta-section {
  padding: 160px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #F8F6F1 25%, #F4EFE6 50%, #F8F6F1 75%, var(--bg) 100%);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 20% 45%, rgba(197, 168, 128, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 40%, rgba(255, 255, 255, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(197, 168, 128, 0.05) 0%, transparent 55%);
  pointer-events: none;
  animation: ctaAurora 10s ease-in-out infinite;
}
@keyframes ctaAurora {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.04); }
}
.cta-section::after { display: none; }
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 660px; margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 16px; color: var(--text); }
.cta-inner .gradient-text {
  background: linear-gradient(135deg, #C5A880 0%, #FFFFFF 35%, #E2E8F0 65%, #C5A880 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShimmer 4s ease infinite;
}
@keyframes gradientShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.cta-inner p { margin-bottom: 40px; font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; }
.cta-inner .tag { color: #7C3AED; background: rgba(79, 70, 229, 0.06); border-color: rgba(79, 70, 229, 0.18); }
.cta-inner .tag::before { background: #7C3AED; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-outline { color: var(--text); border-color: var(--border); background: rgba(255, 255, 255, 0.65); }
.cta-actions .btn-outline:hover { border-color: rgba(124, 58, 237, 0.45); background: rgba(124, 58, 237, 0.08); color: #A78BFA; }

/* ── FOOTER ── */
#footer {
  background: var(--bg-dark);
  border-top: none;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
  position: relative;
}
#footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), rgba(124, 58, 237, 0.2), transparent);
}
#footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.04) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo .logo-text { color: #fff; }
.footer-brand .nav-logo .logo-text span { color: rgba(165, 160, 255, 1); }
.footer-brand p { font-size: 0.84rem; max-width: 260px; line-height: 1.7; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255,255,255,0.35);
}
.social-btn:hover {
  background: rgba(79, 70, 229, 0.12);
  border-color: rgba(79, 70, 229, 0.3);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.15), 0 4px 12px rgba(0, 0, 0, 0.2);
}
.footer-col h4 { font-size: 0.75rem; font-weight: 600; margin-bottom: 18px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.35); transition: all var(--duration) var(--ease); }
.footer-col ul li a::before { display: none; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-tagline { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }