/* =============== ROOT VARIABLES =============== */
:root {
  --c-primary: #ff7300;
  --c-accent: #11af4b;
  --c-bg: #fafafc;
  --c-bg-alt: #fff;
  --c-txt-main: #1a1a1b;
  --c-txt-light: #fff;
  --nav-height: 110px; /* Increased from 64px to accommodate 100px logo */
  --font-h1: 1.75rem;
  --font-h2: 1.2rem;
  --font-paragraph: 1rem;
  --font-weight-bold: 700;
}

/* =============== RESET =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--c-txt-main);
  background: var(--c-bg);
  line-height: 1.6;
}

/* =============== NAVBAR SECTION START =============== */
.ar-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--c-bg-alt);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.ar-nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ar-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}

.ar-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain; /* Ensures logo maintains aspect ratio */
}

.ar-logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ar-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-txt-main);
}

.ar-logo-tagline {
  font-size: 0.65rem;
  font-style: italic;
  font-weight: 400;
  color: var(--c-txt-alt);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.ar-hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.ar-hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--c-txt-main);
  transition: all 0.3s ease;
}

.ar-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ar-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.ar-nav-links a {
  text-decoration: none;
  color: var(--c-txt-main);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.ar-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width 0.3s ease;
}

.ar-nav-links a:hover::after,
.ar-nav-links a.active::after {
  width: 100%;
}

.ar-download-btn {
  padding: 0.7rem 1.5rem;
  background: var(--c-primary);
  color: var(--c-txt-light);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ar-download-btn:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
}

/* =============== NAVBAR RESPONSIVE =============== */

/* Small Tablets and Mobile Landscape: 601px - 768px */
@media (min-width: 601px) and (max-width: 768px) {
  .ar-hamburger {
    display: flex;
  }

  .ar-logo-img {
    width: 70px;
    height: 70px;
  }

  .ar-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--c-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 102;
    overflow-y: auto;
  }

  .ar-nav-menu.active {
    right: 0;
  }

  .ar-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .ar-nav-links li {
    width: 100%;
  }

  .ar-nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-download-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }

  .ar-navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile Portrait: 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) {
  .ar-hamburger {
    display: flex;
  }

  .ar-logo-img {
    width: 60px;
    height: 60px;
  }

  .ar-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--c-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 102;
    overflow-y: auto;
  }

  .ar-nav-menu.active {
    right: 0;
  }

  .ar-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .ar-nav-links li {
    width: 100%;
  }

  .ar-nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-download-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }

  .ar-navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
  }

  .ar-navbar {
    padding: 0.8rem 3vw;
  }

  .ar-logo-text {
    font-size: 1.2rem;
  }
}

/* Extra Small Mobile: 320px - 480px */
@media (max-width: 480px) {
  .ar-hamburger {
    display: flex;
  }

  .ar-logo-img {
    width: 50px;
    height: 50px;
  }

  .ar-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--c-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 1.5rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 102;
    overflow-y: auto;
  }

  .ar-nav-menu.active {
    right: 0;
  }

  .ar-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .ar-nav-links li {
    width: 100%;
  }

  .ar-nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
  }

  .ar-download-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.9rem;
    font-size: 1rem;
  }

  .ar-navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }

  .ar-navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
  }

  .ar-navbar {
    padding: 0.7rem 3vw;
  }

  .ar-logo-text {
    font-size: 1.1rem;
  }
}
/* =============== NAV SECTION END =============== */

/* =============== ABOUT HERO SECTION =============== */
#about-hero-main {
  background: linear-gradient(135deg, #fafafc 0%, #f5f7fa 100%);
  min-height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: var(--nav-height);
  padding: 3rem 0 5rem;
  display: flex;
  align-items: center;
}

/* =============== ANIMATED BACKGROUND - SAME AS HOME =============== */
.about-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Mesh Gradient Base */
.mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(at 20% 30%, rgba(255, 115, 0, 0.05) 0px, transparent 50%),
    radial-gradient(at 80% 20%, rgba(17, 175, 75, 0.05) 0px, transparent 50%),
    radial-gradient(at 40% 80%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
    radial-gradient(at 90% 70%, rgba(255, 115, 0, 0.04) 0px, transparent 50%);
  animation: mesh-shift 15s ease-in-out infinite;
}

@keyframes mesh-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Gradient Blobs */
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: multiply;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.12) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  animation-name: blob-float-1;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(17, 175, 75, 0.12) 0%, transparent 70%);
  top: 10%;
  right: -100px;
  animation-name: blob-float-2;
  animation-duration: 25s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: 20%;
  animation-name: blob-float-3;
  animation-duration: 22s;
}

.blob-4 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.08) 0%, transparent 70%);
  bottom: 15%;
  right: 15%;
  animation-name: blob-float-4;
  animation-duration: 28s;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(-40px, 50px) rotate(120deg) scale(1.08); }
  66% { transform: translate(30px, -40px) rotate(240deg) scale(0.92); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -50px) scale(1.1); }
}

@keyframes blob-float-4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -30px) rotate(90deg); }
  50% { transform: translate(-20px, 50px) rotate(180deg); }
  75% { transform: translate(50px, 30px) rotate(270deg); }
}

/* =============== HERO CONTAINER =============== */
.about-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 0 4vw;
  position: relative;
  z-index: 2;
}

/* =============== LEFT CONTENT =============== */
.about-hero-left {
  flex: 1;
  max-width: 540px;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #11af4b;
  color: white;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.4em 1.2em;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(17,175,75,0.2);
}

.about-hero-badge svg {
  animation: about-icon-spin 4s linear infinite;
}

@keyframes about-icon-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #1a1a1b;
  letter-spacing: -0.02em;
}

.about-highlight {
  color: #ff7300;
}

.about-hero-desc {
  font-size: 1.15rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
}

/* =============== BUTTONS =============== */
.about-hero-btn-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.about-hero-btn-primary,
.about-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.about-hero-btn-primary {
  background: #ff7300;
  color: white;
  box-shadow: 0 4px 14px rgba(255,115,0,0.25);
}

.about-hero-btn-primary:hover {
  background: #e66800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,115,0,0.35);
}

.about-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #11af4b;
  border: 2px solid #11af4b;
}

.about-hero-btn-secondary:hover {
  background: #11af4b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17,175,75,0.3);
}

.about-hero-btn-primary svg,
.about-hero-btn-secondary svg {
  transition: transform 0.3s ease;
}

.about-hero-btn-primary:hover svg {
  transform: translateX(5px);
}

.about-hero-btn-secondary:hover svg {
  transform: scale(1.2);
}

/* =============== TRUST BADGES =============== */
.about-trust-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.about-trust-badge:hover {
  opacity: 1;
}

.about-trust-badge svg {
  flex-shrink: 0;
}

/* =============== RIGHT STATS SIDE =============== */
.about-hero-right {
  flex-shrink: 0;
  width: 100%;
  max-width: 540px;
}

.about-stats-container {
  position: relative;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* =============== STAT CARDS =============== */
.about-stat-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(30,34,90,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(30,34,90,0.15);
}

.about-stat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}

.about-stat-card:hover .about-stat-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.about-icon-orange {
  background: rgba(255,115,0,0.1);
  color: #ff7300;
}

.about-icon-green {
  background: rgba(17,175,75,0.1);
  color: #11af4b;
}

.about-icon-purple {
  background: rgba(86,97,233,0.1);
  color: #5661e9;
}

.about-icon-blue {
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}

.about-stat-content {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1b;
  line-height: 1;
  margin: 0;
}

.about-stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff7300;
  margin-left: 0.25rem;
}

.about-stat-label {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
}

.about-card-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.7s ease;
}

.about-stat-card:hover .about-card-glow {
  left: 100%;
}

/* =============== FEATURED BADGE =============== */
.about-feature-badge {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(30,34,90,0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  animation: about-badge-float 4s ease-in-out infinite;
}

@keyframes about-badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-badge-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: about-shine-move 3s ease-in-out infinite;
}

@keyframes about-shine-move {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.about-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-badge-text strong {
  font-size: 1.05rem;
  color: #1a1a1b;
  font-weight: 700;
}

.about-badge-text span {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 1024px) {
  .about-hero-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .about-hero-left {
    max-width: 100%;
    text-align: center;
  }

  .about-hero-title {
    font-size: 2.3rem;
  }

  .about-hero-btn-row {
    justify-content: center;
  }

  .about-trust-row {
    justify-content: center;
  }

  .about-hero-right {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  #about-hero-main {
    padding: 2rem 0 4rem;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-desc {
    font-size: 1.05rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .about-stat-card {
    padding: 1.5rem 1.2rem;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .blob-1, .blob-2, .blob-3, .blob-4 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 600px) {
  #about-hero-main {
    padding: 2rem 0;
  }

  .about-hero-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .about-hero-left {
    max-width: 100%;
    text-align: center;
  }

  .about-hero-title {
    font-size: 1.75rem;
  }

  .about-hero-desc {
    font-size: 1rem;
  }

  .about-hero-btn-row {
    flex-direction: column;
    width: 100%;
  }

  .about-hero-btn-primary,
  .about-hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-trust-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-stat-card {
    padding: 1.5rem 1.2rem;
  }

  .about-feature-badge {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.5rem;
  }

  .about-stat-number {
    font-size: 1.75rem;
  }

  .about-stat-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .blob-1, .blob-2, .blob-3, .blob-4 {
    width: 200px;
    height: 200px;
  }
}

/* =============== END OF ABOUT HERO SECTION =============== */


/* =============== STORY SECTION =============== */
#story-section-main {
  background: #fafafc;
  padding: 5rem 0;
  position: relative;
}

.story-section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* =============== HEADER =============== */
.story-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #11af4b;
  color: white;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.4em 1em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.story-section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #1a1a1b;
}

.story-highlight {
  color: #ff7300;
}

.story-section-desc {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.6;
}

/* =============== TIMELINE SECTION =============== */
.story-timeline-section {
  max-width: 1100px;
  margin: 0 auto 4rem;
  position: relative;
}

.story-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #e5e7eb;
  transform: translateX(-50%);
  z-index: 1;
}

.story-milestone {
  position: relative;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  transition: all 0.6s ease;
}

.story-milestone:last-child {
  margin-bottom: 0;
}

/* LEFT SIDE CARDS */
.story-milestone.story-left {
  transform: translateX(-50px);
}

.story-milestone.story-left .story-card {
  grid-column: 1;
  justify-self: end;
}

.story-milestone.story-left .story-dot {
  grid-column: 2;
}

/* RIGHT SIDE CARDS */
.story-milestone.story-right {
  transform: translateX(50px);
}

.story-milestone.story-right .story-card {
  grid-column: 3;
  justify-self: start;
}

.story-milestone.story-right .story-dot {
  grid-column: 2;
}

/* =============== DOT =============== */
.story-dot {
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid #ff7300;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(255,115,0,0.2);
  position: relative;
}

.story-dot-active {
  border-color: #11af4b;
  box-shadow: 0 0 0 6px rgba(17,175,75,0.15);
  animation: story-pulse 2s ease-in-out infinite;
}

@keyframes story-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* =============== CARDS =============== */
.story-card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  max-width: 480px;
  box-shadow: 0 4px 20px rgba(30,34,90,0.06);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(30,34,90,0.12);
}

.story-card-active {
  border: 2px solid #11af4b;
  background: white;
}

.story-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.story-card:hover .story-icon {
  transform: scale(1.1) rotate(5deg);
}

.story-icon-orange {
  background: rgba(255,115,0,0.1);
  color: #ff7300;
}

.story-icon-green {
  background: rgba(17,175,75,0.1);
  color: #11af4b;
}

.story-icon-purple {
  background: rgba(86,97,233,0.1);
  color: #5661e9;
}

.story-icon-blue {
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}

.story-year {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff7300;
  background: rgba(255,115,0,0.1);
  padding: 0.3em 0.8em;
  border-radius: 6px;
  margin-bottom: 0.8rem;
}

.story-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 0.6rem;
}

.story-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(17,175,75,0.1);
  color: #11af4b;
  padding: 0.4em 0.9em;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1rem;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #11af4b;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* =============== STATS SUMMARY =============== */
.story-stats-summary {
  margin-top: 4rem;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.story-stat-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(30,34,90,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff7300;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30,34,90,0.12);
  border-color: #ff7300;
}

.story-stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1b;
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff7300;
  display: inline-block;
  margin-left: 0.2rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

/* =============== RESPONSIVE - DESKTOP (1025px+) =============== */
@media (min-width: 1025px) {
  .story-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============== RESPONSIVE - TABLET (769px to 1024px) =============== */
@media (min-width: 769px) and (max-width: 1024px) {
  .story-section-title {
    font-size: 2.2rem;
  }

  .story-card {
    max-width: 380px;
  }

  .story-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-suffix {
    font-size: 1.5rem;
  }
}

/* =============== RESPONSIVE - MOBILE (768px and below) =============== */
@media (max-width: 768px) {
  #story-section-main {
    padding: 2.5rem 0;
  }

  .story-section-container {
    max-width: 100%;
    padding: 0 2vw;
  }

  .story-timeline-section {
    max-width: 100%;
  }

  .story-section-header {
    margin-bottom: 2rem;
  }

  .story-section-title {
    font-size: 1.75rem;
  }

  .story-section-desc {
    font-size: 0.95rem;
  }

  /* HIDE TIMELINE LINE AND DOTS ON MOBILE */
  .story-timeline-line {
    display: none;
  }

  .story-dot {
    display: none;
  }

  /* SIMPLE VERTICAL STACK - NO TIMELINE */
  .story-milestone {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.8rem;
    opacity: 1 !important;
    transform: none !important;
  }

  .story-milestone.story-left,
  .story-milestone.story-right {
    transform: none !important;
  }

  .story-milestone.story-left .story-card,
  .story-milestone.story-right .story-card {
    grid-column: 1;
    max-width: 90%;
    margin: 0 auto;
  }

  .story-card {
    padding: 1.4rem;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30,34,90,0.05);
    width: 100%;
  }

  .story-card-active {
    border: 2px solid #11af4b;
    padding: 1.4rem;
  }

  .story-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
  }

  .story-year {
    font-size: 0.82rem;
    padding: 0.35em 0.8em;
    margin-bottom: 0.75rem;
  }

  .story-title {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    font-weight: 800;
  }

  .story-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #666;
  }

  .live-badge {
    margin-top: 1rem;
    font-size: 0.8rem;
  }

  .story-stats-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-stat-card {
    padding: 1.4rem 1.2rem;
    box-shadow: 0 2px 10px rgba(30,34,90,0.04);
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-suffix {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.87rem;
    margin-top: 0.6rem;
  }
}

/* =============== RESPONSIVE - SMALL MOBILE (480px and below) =============== */
@media (max-width: 480px) {
  #story-section-main {
    padding: 2rem 0;
  }

  .story-section-container {
    max-width: 100%;
    padding: 0 1.5vw;
  }

  .story-section-header {
    margin-bottom: 1.5rem;
  }

  .story-section-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .story-section-desc {
    font-size: 0.9rem;
  }

  .story-milestone {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .story-milestone.story-left .story-card,
  .story-milestone.story-right .story-card {
    max-width: 85%;
  }

  .story-card {
    padding: 1.2rem;
    border-radius: 12px;
    width: 100%;
  }

  .story-card-active {
    padding: 1.2rem;
  }

  .story-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0.8rem;
  }

  .story-year {
    font-size: 0.78rem;
    padding: 0.3em 0.7em;
    margin-bottom: 0.6rem;
  }

  .story-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .story-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .live-badge {
    margin-top: 0.9rem;
  }

  .story-stats-grid {
    max-width: 100%;
    gap: 0.8rem;
  }

  .story-stat-card {
    padding: 1.2rem 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-suffix {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.83rem;
    margin-top: 0.5rem;
  }
}

/* =============== EXTRA SMALL MOBILE (360px and below) =============== */
@media (max-width: 360px) {
  .story-section-container {
    padding: 0 1vw;
  }

  #story-section-main {
    padding: 1.5rem 0;
  }

  .story-section-header {
    margin-bottom: 1.2rem;
  }

  .story-section-title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .story-section-desc {
    font-size: 0.85rem;
  }

  .story-milestone.story-left .story-card,
  .story-milestone.story-right .story-card {
    max-width: 80%;
  }

  .story-card {
    padding: 1rem;
    border-radius: 10px;
    width: 100%;
  }

  .story-card-active {
    padding: 1rem;
  }

  .story-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 0.6rem;
  }

  .story-title {
    font-size: 1rem;
  }

  .story-desc {
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-suffix {
    font-size: 0.9rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* =============== END OF STORY SECTION =============== */



/* =============== MVV SECTION =============== */
#mvv-section-main {
  background: white;
  padding: 6rem 0;
  position: relative;
}

.mvv-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* =============== HEADER =============== */
.mvv-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.mvv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff7300;
  color: white;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.4em 1em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.mvv-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #1a1a1b;
}

.mvv-highlight {
  color: #ff7300;
}

.mvv-desc {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.6;
}

/* =============== MVV CARDS GRID =============== */
.mvv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.mvv-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(30,34,90,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ff7300;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(30,34,90,0.15);
  border-color: rgba(255,115,0,0.2);
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

/* Card Icon */
.mvv-card-icon-wrap {
  margin-bottom: 1.5rem;
}

.mvv-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.mvv-card:hover .mvv-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.icon-orange {
  background: rgba(255,115,0,0.1);
  color: #ff7300;
}

.icon-green {
  background: rgba(17,175,75,0.1);
  color: #11af4b;
}

.icon-blue {
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}

.mvv-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff7300;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.mvv-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mvv-card-text {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Card Glow Effect */
.mvv-card-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: left 0.8s ease;
  pointer-events: none;
}

.mvv-card:hover .mvv-card-glow {
  left: 100%;
}

/* =============== CORE VALUES SECTION =============== */
.core-values-section {
  background: #fafafc;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 40px rgba(30,34,90,0.08);
}

.core-values-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.value-item:hover {
  background: white;
  transform: translateY(-5px);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.15) rotate(-5deg);
}

.value-icon-orange {
  background: rgba(255,115,0,0.1);
  color: #ff7300;
}

.value-icon-green {
  background: rgba(17,175,75,0.1);
  color: #11af4b;
}

.value-icon-purple {
  background: rgba(86,97,233,0.1);
  color: #5661e9;
}

.value-icon-blue {
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}

.value-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .mvv-title {
    font-size: 2.2rem;
  }

  .mvv-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  #mvv-section-main {
    padding: 4rem 0;
  }

  .mvv-header {
    margin-bottom: 3rem;
  }

  .mvv-title {
    font-size: 1.9rem;
  }

  .mvv-desc {
    font-size: 1rem;
  }

  .mvv-cards-grid {
    margin-bottom: 3rem;
  }

  .mvv-card {
    padding: 2rem 1.5rem;
  }

  .mvv-card-title {
    font-size: 1.5rem;
  }

  .core-values-section {
    padding: 2rem 1.5rem;
  }

  .core-values-title {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .mvv-title {
    font-size: 1.6rem;
  }

  .mvv-card-title {
    font-size: 1.3rem;
  }

  .mvv-card-icon {
    width: 64px;
    height: 64px;
  }

  .core-values-title {
    font-size: 1.5rem;
  }

  .value-name {
    font-size: 1.15rem;
  }
}
/* =============== END OF MVV SECTION =============== */

/* =============== CTA SECTION =============== */
#cta-section-main {
  background: #fafafc;
  padding: 6rem 0;
  position: relative;
}

.cta-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* =============== MAIN CTA BOX =============== */
.cta-main-box {
  background: white;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 20px 80px rgba(30,34,90,0.12);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
}

/* Background Decorations */
.cta-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
}

.cta-circle-1 {
  width: 300px;
  height: 300px;
  background: #ff7300;
  top: -100px;
  right: -50px;
}

.cta-circle-2 {
  width: 200px;
  height: 200px;
  background: #11af4b;
  bottom: -80px;
  left: 10%;
}

.cta-circle-3 {
  width: 150px;
  height: 150px;
  background: #ff7300;
  top: 50%;
  right: 15%;
}

/* =============== CONTENT =============== */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-badge-wrap {
  margin-bottom: 1.5rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.5em 1.2em;
  font-size: 0.9rem;
  border: 1px solid rgba(255,115,0,0.2);
  animation: cta-badge-pulse 3s ease-in-out infinite;
}

@keyframes cta-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.cta-headline {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1a1a1b;
  margin-bottom: 1.2rem;
}

.cta-highlight {
  color: #ff7300;
  position: relative;
  display: inline-block;
}

.cta-subhead {
  font-size: 1.15rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
}

/* =============== ACTION GROUP =============== */
.cta-action-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cta-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.cta-input-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.cta-email-input {
  width: 100%;
  padding: 1.2rem 1.2rem 1.2rem 3.2rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.cta-email-input:focus {
  outline: none;
  border-color: #ff7300;
  box-shadow: 0 0 0 4px rgba(255,115,0,0.1);
}

.cta-email-input::placeholder {
  color: #9ca3af;
}

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff7300;
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(255,115,0,0.3);
  position: relative;
  overflow: hidden;
}

.cta-primary-btn:hover {
  background: #11af4b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17,175,75,0.4);
}

.cta-primary-btn:hover svg {
  transform: translateX(4px);
}

.cta-primary-btn svg {
  transition: transform 0.3s ease;
}

/* =============== TRUST ROW =============== */
.cta-trust-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-trust-item svg {
  flex-shrink: 0;
}

/* =============== FEATURE CARDS =============== */
.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.cta-feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: #fafafc;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-feature-card:hover {
  background: white;
  border-color: #ff7300;
  transform: translateX(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cta-feature-card:hover .feature-icon {
  background: rgba(17,175,75,0.1);
  color: #11af4b;
  transform: scale(1.1) rotate(5deg);
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1b;
  margin: 0 0 0.25rem 0;
}

.feature-content p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* =============== STATS BAR - ABOUT PAGE STYLE =============== */
.cta-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.cta-stat-item {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.cta-stat-item:hover {
  transform: translateY(-4px);
}

.cta-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ff7300;
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cta-stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .cta-main-box {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 3rem;
  }

  .cta-headline {
    font-size: 2.5rem;
  }

  .cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  #cta-section-main {
    padding: 4rem 0;
  }

  .cta-main-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-headline {
    font-size: 2rem;
  }

  .cta-subhead {
    font-size: 1rem;
  }

  .cta-action-group {
    flex-direction: column;
  }

  .cta-input-wrapper {
    min-width: 100%;
  }

  .cta-primary-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-features {
    grid-template-columns: 1fr;
  }

  .cta-stats-bar {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .cta-stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .cta-headline {
    font-size: 1.75rem;
  }

  .cta-main-box {
    padding: 2rem 1.2rem;
  }

  .cta-email-input {
    padding: 1rem 1rem 1rem 3rem;
  }

  .cta-primary-btn {
    padding: 1rem 1.5rem;
  }

  .cta-stats-bar {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .cta-stat-number {
    font-size: 1.5rem;
  }

  .cta-stat-label {
    font-size: 0.9rem;
  }
}
/* =============== END OF CTA SECTION =============== */


/* =============== FOOTER SECTION START =============== */

#ar-footer {
  background: var(--c-txt-main);
  color: #e5e7eb;
}

/* Main Footer Layout */
.ar-footer-main {
  padding: 4rem 4vw 2rem;
}
.ar-footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* === Footer Content Grid === */
.ar-footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* === Brand Column === */
.ar-brand-col {
  max-width: 350px;
}
/* Logo Row */
.ar-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.ar-footer-logo img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}
/* Brand Name and Tagline */
.ar-footer-logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
}
.ar-footer-tagline {
  font-weight: 400;
  font-size: 0.75rem; /* Smaller font size */
  font-style: italic; /* Italic style */
  color: #9ca3af;
  margin-top: 2px;
  letter-spacing: 0.03em;
}
/* Brand About */
.ar-footer-about {
  font-size: var(--font-paragraph);
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* === Social Links === */
.ar-footer-social {
  display: flex;
  gap: 1rem;
}
.ar-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #e5e7eb;
  transition: all 0.3s ease;
}
.ar-social-link:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* === Footer Columns === */
.ar-footer-col {
  display: flex;
  flex-direction: column;
}
/* Column Headings */
.ar-footer-heading {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 1.5rem;
}
/* Links and Contact */
.ar-footer-links,
.ar-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ar-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: var(--font-paragraph);
  transition: all 0.3s ease;
  display: inline-block;
}
.ar-footer-links a:hover {
  color: var(--c-primary);
  transform: translateX(4px);
}
/* Contact Items */
.ar-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #9ca3af;
  font-size: var(--font-paragraph);
  line-height: 1.6;
}
.ar-footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--c-primary);
}

/* === Footer Bottom === */
.ar-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 4vw;
}
.ar-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
/* Copyright and Legal Links */
.ar-footer-copyright {
  font-size: 0.9rem;
  color: #9ca3af;
}
.ar-footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.ar-footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.ar-footer-legal a:hover {
  color: var(--c-primary);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .ar-footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
  .ar-footer-col:nth-child(4),
  .ar-footer-col:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .ar-footer-main {
    padding: 3rem 4vw 2rem;
  }
  .ar-footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .ar-brand-col {
    grid-column: span 2;
    max-width: 100%;
  }
  .ar-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .ar-footer-legal {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .ar-footer-main {
    padding: 2.5rem 4vw 1.5rem;
  }
  .ar-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ar-brand-col {
    grid-column: span 1;
  }
  .ar-footer-heading {
    font-size: 1.3rem;
  }
  .ar-footer-social {
    gap: 0.8rem;
  }
  .ar-social-link {
    width: 36px;
    height: 36px;
  }
  .ar-footer-legal {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
@media (max-width: 360px) {
  .ar-footer-logo-text {
    font-size: 1.3rem;
  }
  .ar-footer-heading {
    font-size: 1.2rem;
  }
}
/* =============== FOOTER SECTION END =============== */

/* =============== SCROLL TO TOP BUTTON START =============== */
.ar-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ff7300; /* Use your primary color solid */
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(.51,.92,.24,1), box-shadow 0.2s;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(255,115,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.ar-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ar-scroll-top:hover,
.ar-scroll-top:focus {
  background: #fff;
  color: #ff7300;
  border-color: #ff7300;
  box-shadow: 0 7px 24px rgba(255,115,0,0.19);
  transform: translateY(-3px) scale(1.05);
}
.ar-scroll-top:active {
  background: #f8f8f8;
  color: #ff7300;
  transform: translateY(0) scale(0.97);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .ar-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}
/* =============== SCROLL TO TOP BUTTON END =============== */