@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  padding-top: 60px;
  margin: 0;
}

/* NAVBAR */ 
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  min-height: 56px;
  background: transparent;
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 4px 2%;
  transition: height 0.35s ease, padding 0.35s ease, border-radius 0.35s ease,
    background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

/* ================================
   NAV CONTENT
================================ */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: var(--text);
  transition: color 0.25s ease, font-size 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-btn {
  background: #2563eb;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: padding 0.35s ease, font-size 0.35s ease, border-radius 0.35s ease;
}

/* ================================
   DYNAMIC ISLAND – SCROLLED STATE
================================ */

.navbar.di-scrolled {
  background: transparent;
}

.navbar.di-scrolled .nav-flex {
  background: #000;
  height: 62px;
  padding: 7px 9px 7px 22px;
  border-radius: 999px;
  max-width: 1150px;
  margin: 12px auto 0;
  transform: scale(0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: 0.8s ease;
}

/* subtle squeeze */
.navbar.di-scrolled .nav-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.8s ease;
}

.navbar.di-scrolled .login-btn {
  padding: .8rem 2rem;
  font-size: 16px;
  border-radius: 25px;
  transition: 0.8s ease;
}

/* LOGIN POPUP */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.login-modal.active {
  display: block;
}

.login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

/* Box */

.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  max-width: 92%;
  height: 520px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  animation: pop 0.3s ease;
}

@keyframes pop {
  from { transform: translate(-50%, -45%) scale(0.95); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.login-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: none;
  background: #f1f5f9;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

/* Left side */
.login-left {
  width: 45%;
  background: radial-gradient(circle at bottom, #182f6e, #162c69, #020617, #000000);
  color: white;
  padding: 40px;
}

.login-left h2 {
  font-size: 3rem;
  line-height: 1.1;
  padding-bottom: 4rem;
}

.login-left h2 span {
  font-weight: 800;
  font-style: italic;
}

.login-icons {
  display: flex;
  gap: 14px;
  margin: 18px 0;
}

.login-icons img {
  width: 32px;
}

.login-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.login-stats b{
  font-size: large;
}

.login-stats span{
  padding-left: 0.5rem;
  font-size: smaller;
}

/* Right side */

.login-right {
  width: 55%;
  padding: 40px;
}
.login-right h3{
  padding-bottom: 8px;
}
.login-right p{
  padding-bottom: 18px;
}

.login-right input,
.login-right textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 4px;
  margin-bottom: 20px;
  font-size: 14px;
}

.login-right textarea {
  resize: none;
  height: 80px;
}

.login-submit {
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s ease;
}

.login-submit:hover{
  background: linear-gradient(90deg, #2564ebd6, #4e46e5bd);
  transform: translateY(-3px) translateX(-3px);
}

@media (max-width: 768px) {
  .login-modal {
    padding: 0;
  }

  .login-box {
    width: 95vw !important;
    max-width: 95vw !important;
    height: auto !important;
    max-height: 90vh !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    border-radius: 18px;
  }

  .login-left,
  .login-right {
    width: 100% !important;
    min-width: 100% !important;
  }

  .login-left {
    padding: 3rem !important;
    text-align: center;
  }

  .login-left h2 {
    font-size: 1.8rem !important;
    padding-bottom: 1.2rem;
    line-height: 1.2;
  }

  .login-right {
    padding: 26px 22px !important;
  }

  .login-icons {
    justify-content: center;
    margin-top: 5px;
  }

  .login-stats {
    margin-top: 2.5rem;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px;
    text-align: center;
  }

  .login-right input,
  .login-right textarea {
    font-size: 16px !important;
  }

  .login-submit {
    font-size: 16px !important;
    padding: 16px !important;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {
  .login-box{
    margin: 0 2px;
  }
  .login-left h2 {
    padding-bottom: 1rem;
  }
  .login-stats {
    margin-top: 1rem;
    gap: 5px;
  }
  .login-stats {
    grid-template-columns: 1fr !important;
  }

  .login-left h2 {
    font-size: 1.6rem !important;
  }
}


/* HERO SECTION ----------------------------------------------------------------------------------------------------------------------*/
.about-hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
}

.about-hero-container {
  max-width: 900px;
  margin: auto;
}

/* TITLE */
.about-hero-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 30px;
  background: linear-gradient(
    90deg,
    #4a6cff 50%,
    #8c52ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


.about-hero-title span {
  display: inline-block;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  margin-top: 6px;
  background: linear-gradient(
    90deg,
    #4a6cff 50%,
    #8c52ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.about-hero-subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ARROW */
.about-hero-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  opacity: 0.7;
  animation: arrowFloat 1.8s ease-in-out infinite;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.about-hero-arrow:hover {
  opacity: 1;
  transform: translateY(4px);
}

/* ANIMATION */
@keyframes arrowFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .about-hero {
    padding: 70px 18px 30px;
  }

  .about-hero-title {
    font-size: 44px;
  }

  .about-hero-subtitle {
    font-size: 15px;
    font-weight: bold;
  }
  .about-hero-container{
    margin: 0px;
  }
}

@media (max-width: 480px) {
  .about-hero{
    padding: none;
    margin: none;
  }
  .about-hero-title {
    font-size: 44px;
    line-height: 1.2;
  }
  .about-hero-title span{
    font-size: larger;
  }

  .about-hero-subtitle {
    font-size: 14px;
  }

  .about-hero-arrow {
    font-size: 24px;
  }
  .about-hero-container{
    padding: 0px;
    margin: 0px;
  }
}

/* ================================
   ABOUT STORY SECTION
================================ */
.about-story {
  height: 700vh;
  background: #000;
  color: #fff;
}

.about-story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* LOGO (ALWAYS FIXED) */
.about-story-logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  justify-content: center;
  display: flex;
}

.about-story-logo img {
  width: 25%;
}

/* IMAGES */
.about-story-images {
  position: absolute;
  top: 50%;
  right: -140%;
  transform: translateY(-50%);
  display: flex;
  gap: 40px;
  z-index: 1;
}

.story-img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}

/* TEXT (HIDDEN INITIALLY) */
.about-story-text {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  max-width: 720px;
  text-align: center;
  opacity: 0;
  z-index: 4;
}

.about-story-text p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

.slider-btn{
  background: none;
  border: none;
  color: #fff;
}
/* ================================
   MOBILE (NO SCROLL HIJACK)
================================ */
@media (max-width: 768px) {
  .mobile-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.35s ease;
    max-width: 360px;
  }

  .slider-track .story-img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 18px;
  }

  .slider-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 3;
  }

  .slider-btn:active {
    transform: scale(0.95);
  }

  .about-story {
    height: auto;
    padding: 80px 20px;
  }

  .about-story-images.mobile-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .slider-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-story-sticky {
    position: relative;
    height: auto;
  }

  .about-story-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
  }

  .about-story-images {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none !important;
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .story-img {
    width: 100%;
    max-width: 360px;
    height: auto;
  }

  .about-story-text {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    opacity: 1;
    margin-top: 48px;
  }
}

/* ================================
   ABOUT LEADERSHIP SECTION
================================ */

.about-leadership {
  background: #000;
  color: #fff;
  padding: 110px 0;
}

.about-leadership-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================
   HEADING
================================ */

.about-leadership-intro h2 {
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: 44px;
  font-weight: 400;
  text-align: center;
}

.about-leadership-intro h2 span {
  display: block;
  font-style: italic;
  font-weight: 700;
}

/* ================================
   TEXT GRID
================================ */

.about-leadership-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 75%;
  margin: 0 auto;
}

.about-leadership-text p {
  max-width: 460px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
}

/* ================================
   FOUNDER BLOCK
================================ */

.about-founder {
  display: grid;
  grid-template-columns: minmax(480px, 560px) 1fr;
  gap: 56px;
  align-items: center;
  justify-content: end;
  margin-top: 110px;
}

/* IMAGE */
.about-founder-image {
  width: 100%;
  height: 560px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  overflow: hidden;
}

.about-founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* QUOTE CARD */
.about-founder-quote {
  max-width: 500px;
  margin-left: auto;

  /* GLASS BASE */
  background: linear-gradient(
    55deg,
    rgb(0, 0, 0) 25%,
    #09193b 50%,
    #0d2353 60%,
    #183f95 75%,
    #1e50bd 90%,
    #2563eb 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 2rem;
  border: 0.6px solid rgba(85, 126, 247, 0.726);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4), 0 40px 90px rgba(0, 0, 0, 0.65);
}

.quote-text {
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  margin-top: 0px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 38px;
}

.quote-author h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
  font-style: italic;
}

.quote-author span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {
  .about-leadership {
    padding: 90px 0;
  }

  .about-leadership-intro h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .about-leadership-text {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-leadership-text p {
    max-width: 100%;
  }

  .about-founder {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 90px;
  }

  .about-founder-image {
    width: 100%;
    height: 380px;
  }

  .about-founder-quote {
    max-width: 100%;
    padding: 3rem;
    margin-left: 0;
  }
}

/* ================================
   CLIENT TESTIMONIALS
================================ */

.client-testimonials {
  background: #fff;
  padding: 120px 0;
  color: #000;
}

.client-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Heading */
.client-title {
  font-size: 44px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}

.client-title span {
  font-weight: 700;
  font-style: italic;
}

.client-subtitle {
  text-align: center;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 72px;
}

/* Cards grid */
.client-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Empty card placeholders */
.client-card {
  max-height: 400px;   /* realistic size */
  max-width: 2800px;
  border-radius: 20px;
  background: #f6f6f6;
  border: 1.5px solid rgba(0, 122, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* IMPORTANT */
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* keeps logo proportional */
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
  .client-testimonials {
    padding: 64px 16px;
  }

  .client-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .client-card {
    width: 100%;
    height: 680px;      /* fixed container height */
    padding: 12px;
  }

  .client-card img {
    width: 100%;
    height: 100%;
  }
}


/* ================================
   CAREERS SECTION
   ================================ */
.careers-section {
  display: flex;
  justify-content: center;
  padding: 120px 20px;
  background: #000;
}

.beam-card {
  position: relative;
  max-width: 760px;
  width: 100%;
  border-radius: 18px;
  padding: 4px; 
  overflow: hidden;
  background: #000;
}

/* the moving beam */
.beam-card::before {
  content: "";
  position: absolute;
  inset: -150%;
  background: conic-gradient(
    transparent 0deg,
    transparent 200deg,
    rgba(65, 90, 255, 0.25) 235deg,
    rgba(65, 90, 255, 0.6) 280deg,
    rgba(65, 90, 255, 0.9) 320deg,
    rgba(65, 90, 255, 1) 360deg
  );
  transform: rotate(var(--angle));
  z-index: 0;
  filter: blur(0.6px) drop-shadow(0 0 10px rgba(65, 90, 255, 0.85));
}

/* glass body */
.beam-card::after {
  content: "";
  position: absolute;
  inset: 1px; /* must match padding */
  border-radius: 17px;
  background: #000; /* solid mask */
  backdrop-filter: blur(14px);
  z-index: 1;
}

.beam-card-inner {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  border-radius: 17px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  text-align: center;
  color: #fff;
}

.beam-card-inner p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: #eaeaea;
}

.career-btn {
  background: #2563eb;
  border: none;
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 1px 1px 16px 0px rgba(16, 35, 131, 0.8);
}



/* ================================
   LET’S GIVE WINGS – CTA SECTION
================================ */

.cta-wings {
  background: #000;
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
  border-top: 0.2px solid #2a2a2a;
}

/* MAIN ROW */
.cta-wings-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; 
  gap: 64px;

  padding: 0 24px;
}

/* LEFT & RIGHT TEXT */
.cta-text {
  color: #ffffff;
  font-size: 50px;
  line-height: 1.1;
  white-space: nowrap;
}

.cta-text.left {
  text-align: right;
  font-weight: 300;
}

.cta-text.right {
  text-align: left;
  font-weight: 500;
}

.cta-text.right span {
  font-style: italic;
  font-weight: 700;
}

/* LOGO PLACEHOLDER (replace later with img/svg) */
.cta-logo {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* SUBTEXT */
.cta-subtext {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: bold;
}

/* BUTTON */
.cta-btn {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;

  margin: 32px auto 0;
  padding: 18px 46px;

  background: #2563eb;
  border-radius: 999px;

  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(25, 39, 140, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(24, 37, 133, 0.45);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .cta-wings {
    padding: 100px 0 90px;
  }

  .cta-wings-inner {
    grid-template-columns: 1fr;
    gap: 0px;
    text-align: center;
  }

  .cta-text {
    font-size: 40px;
    text-align: center !important;
    white-space: normal;
  }

  .cta-logo {
    margin: 0 auto;
    width: 180px;
    height: 180px;
  }

  .cta-subtext {
    margin-top: 56px;
    font-size: 16px;
  }
}

@media(max-width: 480px) {
  .cta-text {
    font-size: 32px;
  }

  .cta-logo {
    width: 140px;
    height: 140px;
  }

  .cta-logo img {
    width: 100%;
    height: 100%;
  }

  .cta-subtext {
    font-size: 14px;
  }

  .cta-btn {
    padding: 14px 32px;
    font-size: 14px;
  }
}

/* =================================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  body {
    padding-top: 56px;
  }

  .navbar {
    padding: 0;
    min-height: 56px;
  }

  .nav-flex {
    height: 56px;
    padding: 0 16px;
  }

  .logo img {
    width: 120px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--header-bg);
    position: absolute;
    top: 56px;
    right: 16px;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .nav-flex {
    justify-content: flex-start;
  }

  .logo {
    margin-right: auto;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 8px 0;
  }

  .mobile-menu-btn {
    display: block;
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .featured-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 105px;
  }
  .login-btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .nav-links {
    right: 12px;
    padding: 12px 14px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

/*-----------------------FOOTER----------------------*/
.simple-footer {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
  padding: 100px 24px 42px;
}

.dark .simple-footer {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 36px;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.6;
  margin: 0px;
}

/* Right */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  line-height: 1.9;
  text-align: left;
  opacity: 0.7;
}

.footer-right a {
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

.footer-right a:hover {
  opacity: 1;
}

/* Mobile */

@media (max-width: 768px) {
  .footer-inner {
    gap: 30px;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-brand {
    margin-bottom: 14px;
  }
  .footer-address {
    font-size: 10px;
  }
  .footer-right a {
    font-size: 10px;
  }
}
