/* ==========================================================================
   ACCRUME - CORE STYLESHEET
   Description: Premium corporate design system, layout, and component styling.
   ========================================================================== */

/* --- 1. Fonts & Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* --- 2. CSS Custom Properties / Variables --- */
:root {
  --color-primary: #2563EB;
  --color-primary-rgb: 37, 99, 235;
  --color-secondary: #0F172A;
  --color-secondary-rgb: 15, 23, 42;
  --color-accent: #06B6D4;
  --color-accent-rgb: 6, 182, 212;
  --color-success: #22C55E;
  --color-background: #F8FAFC;
  --color-card-bg: rgba(255, 255, 255, 0.7);
  --color-text: #111827;
  --color-text-light: #6B7280;
  
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- 3. Base Styles & Resets --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

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

/* --- 4. Layout & Spacing Utilities --- */
.section-padding {
  padding: 100px 0;
}

.section-title-wrapper {
  margin-bottom: 60px;
}

.subtitle-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  margin-bottom: 20px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--color-text-light);
  font-size: 1.125rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 5. Premium Buttons --- */
.btn-custom {
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn-primary-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-primary-gradient:hover::before {
  opacity: 1;
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary-gradient > * {
  position: relative;
  z-index: 2;
}

.btn-secondary-custom {
  background-color: var(--color-secondary);
  color: #ffffff !important;
}

.btn-secondary-custom:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid rgba(15, 23, 42, 0.15);
  color: var(--color-secondary) !important;
}

.btn-outline-custom:hover {
  border-color: var(--color-primary);
  background-color: rgba(37, 99, 235, 0.05);
  color: var(--color-primary) !important;
  transform: translateY(-3px);
}

.btn-link-custom {
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 5px 0;
}

.btn-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.btn-link-custom:hover::after {
  width: 100%;
}

.btn-link-custom i {
  transition: var(--transition-fast);
}

.btn-link-custom:hover i {
  transform: translateX(4px);
}

/* --- 6. Glassmorphism & Cards --- */
.glass-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.glow-on-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
  pointer-events: none;
}

.glow-on-hover:hover::after {
  opacity: 1;
}

/* --- 7. Sticky Header / Navigation --- */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.header-navbar.shrunk {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-brand {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-brand span {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.nav-link-custom {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-secondary);
  padding: 8px 16px;
  position: relative;
  display: inline-block;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--color-primary);
}

/* Mobile Toggle Hamburger */
.navbar-toggler-custom {
  border: none;
  background: transparent;
  padding: 4px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.navbar-toggler-custom span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler-custom.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler-custom.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-custom.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- 8. Hero Section --- */
.hero-wrapper {
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.hero-shape-1 {
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: var(--color-accent);
}

.hero-shape-2 {
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: var(--color-primary);
}

.hero-headline {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

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

.hero-subtext {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 580px;
}

/* Floating Card Component */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-stats-card {
  position: absolute;
  z-index: 10;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--border-radius-md);
}

.floating-card-1 {
  top: 15%;
  left: -8%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
}

.floating-card-2 {
  bottom: 10%;
  right: -5%;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.floating-card-2 h4 {
  color: #ffffff;
}

.floating-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-card-1 .floating-card-icon {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
}

.floating-card-2 .floating-card-icon {
  background-color: rgba(6, 182, 212, 0.2);
  color: var(--color-accent);
}

/* --- 9. Trusted By / Partner Marquee --- */
.trusted-marquee-container {
  overflow: hidden;
  padding: 30px 0;
  background-color: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
}

.marquee-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  color: #94A3B8;
  transition: var(--transition-fast);
}

.marquee-logo:hover {
  color: var(--color-secondary);
}

.marquee-logo i {
  font-size: 1.5rem;
}

/* --- 10. Services Section & Service Cards --- */
.service-card {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #ffffff;
  transform: rotateY(180deg);
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card-desc {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* --- 11. Products Showcase --- */
.products-section {
  background: linear-gradient(180deg, var(--color-background) 0%, #ffffff 50%, var(--color-background) 100%);
}

.product-tab-card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-tab-img-wrapper {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(6, 182, 212, 0.05) 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  min-height: 350px;
}

.product-tab-info {
  padding: 50px;
}

.product-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-badge.coming-soon {
  background-color: var(--color-accent);
}

.product-tab-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.product-tab-desc {
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-secondary);
}

.product-features-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-success);
  font-size: 0.9rem;
}

/* Nav Pills Styling overrides */
.nav-pills-custom {
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-link-pill {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-secondary);
  background-color: rgba(15, 23, 42, 0.04) !important;
  border: 1px solid transparent;
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.nav-link-pill.active {
  background: var(--color-secondary) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}

/* --- 12. Industries Grid --- */
.industry-card {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  z-index: 1;
}

.industry-bg-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1E293B 100%);
  z-index: -2;
  transition: var(--transition-smooth);
}

.industry-card:text {
  background: linear-gradient(135deg, #1E293B 0%, var(--color-primary) 100%);
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  z-index: -1;
  transition: var(--transition-smooth);
}

.industry-card:hover .industry-bg-placeholder {
  transform: scale(1.1);
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, var(--color-primary) 0%, rgba(15, 23, 42, 0.75) 100%);
  opacity: 0.95;
}

.industry-card-icon {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.industry-card:hover .industry-card-icon {
  color: #ffffff;
  transform: translateY(-8px);
}

.industry-card-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}

/* --- 13. Why Choose Us --- */
.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* --- 14. Development Process Timeline --- */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: rgba(15, 23, 42, 0.08);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.process-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.process-container::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #ffffff;
  border: 4px solid var(--color-primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-smooth);
}

.process-left {
  left: 0;
}

.process-right {
  left: 50%;
}

.process-right::after {
  left: -10px;
}

.process-content {
  padding: 30px;
  background-color: #ffffff;
  position: relative;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: var(--transition-smooth);
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.15);
}

.process-container:hover::after {
  background-color: var(--color-accent);
  transform: scale(1.2);
}

.process-step-num {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(37, 99, 235, 0.1);
  position: absolute;
  top: 15px;
  right: 25px;
}

.process-right .process-step-num {
  left: 25px;
  right: auto;
}

/* --- 15. Technology Stack --- */
.tech-box {
  padding: 24px;
  text-align: center;
  border-radius: var(--border-radius-sm);
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.tech-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(6, 182, 212, 0.2);
}

.tech-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--color-text-light);
  transition: var(--transition-fast);
}

.tech-box:hover .tech-icon {
  color: var(--color-primary);
}

.tech-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-secondary);
}

/* --- 16. Statistics / Counters --- */
.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 1rem;
}

/* --- 17. Testimonials Slider --- */
.testimonials-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-background) 100%);
}

.swiper-testimonials {
  padding-bottom: 60px !important;
}

.testimonial-card {
  padding: 40px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.testimonial-rating {
  color: #FBBF24;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-company {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* --- 18. FAQ Accordion --- */
.faq-accordion .accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  margin-bottom: 16px;
  border-radius: var(--border-radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #ffffff;
}

.faq-accordion .accordion-button {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-secondary);
  padding: 20px 24px;
  font-size: 1.05rem;
  background-color: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background-color: rgba(37, 99, 235, 0.02);
}

.faq-accordion .accordion-button::after {
  background-size: 1rem;
}

.faq-accordion .accordion-body {
  padding: 24px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- 19. Contact Forms --- */
.form-group-custom {
  margin-bottom: 24px;
}

.form-label-custom {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.form-control-custom {
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--color-secondary);
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* --- 20. Footer Styles --- */
.footer-wrapper {
  background-color: var(--color-secondary);
  color: #94A3B8;
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 60px;
  margin-bottom: 40px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
  display: inline-block;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-newsletter-text {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.newsletter-form-container {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 10px 16px;
  color: #ffffff;
  font-size: 0.9rem;
  flex-grow: 1;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

.footer-logo-brand {
  color: #ffffff;
}

/* --- 21. Subpage Inner Hero (Header spacer) --- */
.inner-page-hero {
  background: radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.04) 0%, transparent 35%),
              linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, transparent 100%);
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.inner-page-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.inner-page-breadcrumbs a {
  color: var(--color-text-light);
}

.inner-page-breadcrumbs a:hover {
  color: var(--color-primary);
}

.inner-page-breadcrumbs span {
  color: var(--color-text-light);
}

.inner-page-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.inner-page-desc {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0;
}
