/* ==================================================
   Abinci Landing — stylesheet
   filepath: c:\Users\hp\Desktop\Abinci Project\landing page\css\style.css

   ==================================================*/

/* || CSS Resets */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  background-color: #cccccc;
  scroll-behavior: smooth;
}

/* Scrollbar Behaviour */
::-webkit-scrollbar {
  width: 0;
}

h1 {
  text-decoration: none;
}

img {
  display: block;
}

p {
  font-family: var(--font-body);
}

/* === VARIABLES === */
:root {
  /* Colors */
  --brand-orange: #fe8e01;
  --brand-green: #057a55;
  --bg-light: #f9fafb;
  --bg-very-light: #fff8f1;
  --panel-border: #e5e7eb;
  --footer-bg: #374151;
  --muted: #6b7280;
  --black: #000;
  --white: #fff;

  /* Gradients */
  --grad-a: #defdea;
  --grad-b: #feead2;

  /* Fonts */
  --font-sans: "Montserrat", sans-serif;
  --font-body: "Figtree", sans-serif;

  /* Radii & spacing */
  --radius-sm: 8px;
  --radius-lg: 32px;

  /* Transitions */
  --ease-default: 0.4s ease;

  /* layout */
  --header-offset-lg: 88px; /* used for scroll-margin to place section top below sticky header */
  --header-offset-sm: 44px;

  /* Section padding sizes (vertical horizontal) */
  --section-padding-sm: 48px 24px;
  --section-padding-md: 96px 48px;
  --section-padding-lg: 96px 96px;
}

/* || Default Settings (Elements) */
body {
  min-height: 100vh;
  width: 100%;
  /* max-width: 1440px; */
  margin: 0 auto;
  min-width: 320px;
  background: white;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  justify-self: center;
  position: relative;
}

/* || FUNCTIONAL SETTINGS */
/* To ensure anchored sections start below the sticky header */
section[id],
.section-title,
.hero,
.audience,
.how-it-works,
.why-abinci,
.beyond-delivery,
.our-story {
  scroll-margin-top: var(--header-offset-lg);
}

@media screen and (min-width: 1024px) {
  section[id],
  .section-title,
  .hero,
  .audience,
  .how-it-works,
  .why-abinci,
  .beyond-delivery,
  .our-story {
    scroll-margin-top: var(--header-offset-sm);
  }
}

a,
.nav-links a,
.nav-drawer a,
.footer a {
  color: inherit;
  text-decoration: none;
}

/* || UTILITIES */
.green {
  color: var(--brand-green);
}

.orange {
  color: var(--brand-orange);
}

/* || SECTIONS fORMATTING*/
.section-title h2 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  z-index: 10;
}

.highlight {
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  top: 50%; /* adjust vertical alignment */
  left: 30%;
  width: 80%;
  height: 20px;
  background-color: var(--brand-orange);
  z-index: -2;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .section-title h2 {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .section-title h2 {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 24px;
  }
}

/* || NAVIGATION SECTION */
/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: var(--white);
  width: 100%;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
}

/* NAV CONTAINER */
.nav {
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  width: auto;
  /* background-color: red; */
}

.nav img {
  width: 80%;
}

/* DESKTOP NAV ITEMS */
.nav-links {
  display: none; /* hidden on mobile */
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--black);
}

.join-btn {
  padding: 8px 16px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: none; /* hidden on mobile */
  font-size: inherit;
  font-family: var(--font-sans);
}

/* MOBILE NAV UI */
.nav-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger-btn {
  background: transparent;
  border: none;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  /* background-color: red; */
}

.nav-country {
  background-color: #f0fdf4;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

/* MOBILE OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-default);
  z-index: 2000;
}

/* MOBILE DRAWER MENU */
.nav-drawer {
  position: fixed;
  top: 10%;
  right: -100%; /* hidden off-canvas */
  width: min(280px, calc(85% - 48px));
  max-width: 360px;
  padding: 32px 24px 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: right var(--ease-default);
  z-index: 3001;
  border-radius: var(--radius-sm);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 14px;
}

.nav-drawer hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.drawer-btn {
  background: var(--black);
  color: var(--white);
  padding: 12px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: block;
  text-align: center;
  width: 100%;
  text-decoration: none;
}

/* WHEN MENU IS OPEN */
.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.nav-open .nav-drawer {
  right: 24px;
  top: 10%;
}

/* RESPONSIVE BREAKPOINTS */
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .nav-open .nav-drawer {
    right: 48px;
  }

  .nav img {
    width: 100%;
  }
}

/* NAVIGATION (WEB) */
@media screen and (min-width: 1024px) {
  .nav {
    padding: 24px 96px;
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--white);
    border-bottom: 1px solid var(--bg-light);
  }

  .join-btn {
    display: block; /* show on desktop */
  }

  /* Hide hamburger + country flag wrapper on desktop */
  .nav-elem img[alt="hamburger"] {
    display: none;
  }

  /* Convert mobile nav-bar to desktop inline menu */
  .nav-bar {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    background: transparent;
    padding: 0;
    width: auto;
  }

  .nav-bar hr {
    display: none;
  }

  .nav-bar button {
    padding: 12px 24px;
    background: #333;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
  }

  .nav-mobile {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-drawer,
  .nav-overlay {
    display: none;
  }
  .nav img {
    width: 100%;
  }
}

/* || GLOBAL STYLES FOR SECTIONS */

/* || HERO SECTION */
.hero {
  display: flex;
  flex-direction: column;
  padding: var(--section-padding-sm);
  gap: 48px;
  align-items: center;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero-title h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  font-size: 22px;
}

.hero-subtitle {
  width: 110%;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  width: 110%;
  gap: 12px;
}

.hero-cta-elem {
  display: flex;
  border: 1px solid var(--black);
  border-radius: var(--radius-sm);
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.hero-cta-elem-small {
  font-size: 8px;
}

.hero-cta-elem-big {
  font-size: 14px;
  font-weight: 500;
}

.hero-image {
  background-image: linear-gradient(
    275.99deg,
    var(--grad-a) 40.29%,
    var(--grad-b) 95.25%
  );
  min-width: 280px;
  min-height: 280px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image img {
  object-fit: cover;
  position: absolute;
  width: 310px;
  height: 250.41px;
  left: -12.6px;
  top: 28px;
}

/* || RESPONSIVE BREAKPOINTS */
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .hero-title h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
    width: 85%;
  }

  .hero {
    padding: var(--section-padding-md);
  }

  .hero-cta-elem {
    padding: 8px 16px;
  }

  .hero-cta-elem-small {
    font-size: 10px;
  }
  .hero-cta-elem-big {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    padding: var(--section-padding-lg);
  }

  .hero-main {
    align-items: flex-start;
  }

  .hero-title {
    width: 100%;
  }

  .hero-title h1 {
    text-align: left;
    width: 100%;
    font-size: 32px;
  }

  .hero-image {
    min-width: 350px;
    min-height: 350px;
  }

  .hero-image img {
    width: 375px;
    height: auto;
    top: 15%;
  }

  .hero-subtitle {
    width: 95%;
    text-align: left;
    font-size: 16px;
  }

  .hero-header {
    align-items: flex-start;
  }

  .hero-cta {
    justify-content: flex-start;
    width: auto;
  }

  .hero-cta-elem {
    padding: 12px 20px;
  }

  .hero-cta-elem-small {
    font-size: 10px;
  }
  .hero-cta-elem-big {
    font-size: 16px;
  }
}

/* || AUDIENCE SECTION*/
.audience {
  background-color: var(--bg-light);
  padding: var(--section-padding-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  font-family: var(--font-body);
}

.card-cont {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
  align-items: center;
}

.card {
  padding: 12px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform var(--ease-default);
  box-sizing: border-box;
  flex: 1 1 180px;
  max-width: 360px;
}

.card:hover {
  transform: translateY(-8px);
}

/* Busy student */
.card.orange {
  background-color: var(--bg-very-light);
  border: 1px solid var(--brand-orange);
}

/* Broke student */
.card.green {
  background-color: #f0fdf4;
  border: 1px solid var(--brand-green);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-body h3,
.audience-head h3 {
  font-size: 18px;
  font-weight: 600;
}

.card-text {
  color: var(--black);
  font-size: 14px;
}

.card img {
  width: 80%;
  height: auto;
}

/* RESPONSIVE BREAKPOINTS */
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .card-body h3,
  .audience-head h3 {
    font-size: 20px;
  }

  .card-text {
    font-size: 16px;
  }

  .audience {
    padding: var(--section-padding-lg);
    gap: 48px;
  }

  .card {
    flex: 1 1 calc(45% - 24px);
  }
}

@media screen and (min-width: 1024px) {
  .audience {
    padding: var(--section-padding-lg);
  }

  .card-body h3,
  .audience-head h3 {
    font-size: 24px;
  }

  .card-text {
    font-size: 18px;
  }

  .card-cont {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 48px;
  }

  .card:first-child {
    order: 1;
  }

  .card:nth-child(2) {
    order: 3;
  }

  .audience-head {
    order: 1;
    height: 100%;
    place-content: center;
  }
}

/* || HOW IT WORKS SECTION */
.how-it-works {
  padding: var(--section-padding-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--brand-orange);
  border-radius: 16px;
}

.how-cont hr {
  border: none;
  border-bottom: 1px solid #e5e7eb;
}

.how-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-item img {
  height: 25%;
  max-width: 25%;
}

.how-item h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 2;
}

.how-item-text p {
  font-size: 14px;
  line-height: 1.4;
}

.how-dots:nth-of-type(1),
.how-dots:nth-of-type(2),
.how-dots:nth-of-type(3) {
  display: none;
}

/* RESPONSIVE BREAKPOINTS */
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .how-it-works {
    align-items: center;
    padding: var(--section-padding-md);
    gap: 48px;
  }

  .how-cont {
    padding: 48px;
  }

  .how-item h3 {
    font-size: 20px;
  }

  .how-item-text p {
    font-size: 16px;
    line-height: 1.4;
  }

  .how-item img {
    height: 20%;
    max-width: 20%;
  }
}

@media screen and (min-width: 1024px) {
  .how-it-works {
    align-items: center;
    padding: var(--section-padding-lg);
    gap: 48px;
  }

  .how-item {
    width: 33%;
  }

  .how-cont hr {
    border: 0;
    border-right: 1px solid #e5e7eb;
  }

  .how-cont {
    flex-direction: row;
    position: relative;
    padding: 96px 48px;
    width: 100%;
    flex: 1;
  }

  .how-dots:nth-of-type(1) {
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  .how-dots:nth-of-type(2) {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
  }

  .how-dots:nth-of-type(3) {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: inline-block;
  }

  .how-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
  }

  .how-item:nth-of-type(1) img {
    min-width: 85px;
    height: 112px;
  }

  .how-item:nth-of-type(2) img {
    min-width: 85px;
    height: 112px;
  }

  .how-item:nth-of-type(3) img {
    min-width: 112px;
    height: 112px;
  }
  .how-item h3 {
    font-size: 24px;
  }

  .how-item-text p {
    font-size: 18px;
  }
}

/* || WHY STUDENT LOVE ABINCI SECTION */
.why-abinci {
  display: flex;
  flex-direction: column;
  padding: var(--section-padding-sm);
  gap: 48px;
  align-items: center;
  background-image: linear-gradient(
    275.99deg,
    var(--grad-b) 40.29%,
    var(--grad-a) 95.25%
  );
}

/* Left section */
.why-abinci-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* background-color: red; */
}

.why-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.why-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

.why-card {
  background-color: var(--white);
  padding: 24px 12px;
  border: 16px solid var(--panel-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: auto;
}

.why-card-item {
  padding: 12px;
  display: flex;
  gap: 4px;
  flex-direction: column;
  border-left: 4px solid var(--brand-green);
}

.why-card-item.active {
  background-color: var(--brand-orange);
  color: var(--white);
}

.why-title {
  font-size: 16px;
  font-weight: 600;
}

.why-text {
  font-size: 12px;
  line-height: 1.2;
}

/* || RESPONSIVE BREAKPOINTS */
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .why-abinci {
    padding: var(--section-padding-md);
  }

  .why-abinci-cont .section-title h2 {
    text-align: center;
    width: 100%;
  }

  .why-abinci-cont {
    gap: 48px;
  }
  .why-title {
    font-size: 20px;
    line-height: 1.5;
  }
  .why-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .why-abinci {
    flex-direction: row;
    align-items: center;
    padding: var(--section-padding-lg);
  }

  .why-abinci-cont .section-title h2 {
    text-align: left;
  }

  .why-abinci-cont {
    max-width: 50%;
    gap: 48px;
  }

  .why-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .why-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
  }

  .why-title {
    font-size: 24px;
  }

  .why-text {
    font-size: 18px;
  }
}

/* || BEYOND DELIVERY SECTION */
.beyond-delivery {
  padding: var(--section-padding-sm);
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.beyond-delivery-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.beyond-delivery-body p {
  font-family: var(--font-body);
  line-height: 1.4;
  font-size: 14px;
}

.beyond-delivery-body {
  font-family: var(--font-sans);
  line-height: 1.4;
}

.button {
  background-color: var(--black);
  color: var(--white);
  padding: 8px 12px;
  border: none;
  border-radius: var(--radius-sm);
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(12px, 2.1vw, 18px);
}

.campus-img {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.beyond-delivery img {
  position: absolute;
  bottom: -12%;
  width: 100%;
  max-width: 500px;
}

/* || RESPONSIVE BREAKPOINTS */
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .beyond-delivery {
    padding: var(--section-padding-md);
    padding-bottom: 0;
    gap: 48px;
  }

  .campus-img {
    min-height: 300px;
    width: 100%;
    justify-content: flex-end;
  }

  .campus-img img {
    max-width: 600px;
    position: absolute;
    bottom: -18%;
  }

  .beyond-delivery-body p {
    font-size: 18px;
  }

  .button {
    padding: 8px 12px;
  }

  .beyond-delivery-body p {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .beyond-delivery {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    position: relative;
    min-height: 720px;
    padding: var(--section-padding-lg);
    padding-bottom: 0;
  }

  .campus-img {
    position: absolute;
    width: 60%;
    overflow: hidden;
    height: 90%;
    bottom: 0;
    right: 0;
  }

  .campus-img img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: contain;
    bottom: -8%;
    right: 0;
    max-width: 800px;
  }

  .beyond-delivery-body {
    width: 70%;
  }

  .beyond-delivery {
    padding: var(--section-padding-lg);
  }

  .beyond-delivery-body p{
    font-size: 20px;
  }

  .beyond-delivery-body {
    gap: 24px;
  }

  .button {
    font-size: 16px;
  }
}

/* || OUR STORY SECTION */
.our-story {
  padding: var(--section-padding-sm);
  gap: 24px;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-very-light);
}

.our-story-img {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  justify-content: center;
}

.our-story img {
  width: 80%;
  height: auto;
  object-fit: cover;
}

.our-story-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.our-story-body p {
  font-family: var(--font-body);
  line-height: 1.4;
  font-size: 14px;
}

.quote {
  border-left: 4px solid var(--brand-orange);
  padding: 8px 12px;
  color: var(--brand-orange);
}

.quote p {
  font-family: var(--font-sans);
  line-height: 1.4;
  font-size: 12px;
}

/* || RESPONSIVE BREAKPOINTS */
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .our-story {
    padding: var(--section-padding-md);
  }

  .our-story-body p {
    font-size: 16px;
  }

  .quote p {
    font-size: 14px;
  }
}

@media screen and (min-width: 1024px) {
  .our-story-body-cont {
    display: flex;
    gap: 24px;
    flex-direction: row-reverse;
    align-items: center;
  }

  .our-story-body {
    width: 60%;
  }

  .our-story img {
    width: 100%;
    height: auto;
    margin: -48px;
  }

  .our-story {
    padding: var(--section-padding-lg);
    /* gap: 48px; */
  }

  .our-story-body-cont {
    gap: 24px;
  }
  .our-story-body p{
    font-size: 20px;
  }

  .quote p {
    font-size: 18px;
  }

  .our-story-body-cont {
    gap: 24px;
  }
}

/* || PRIVACY AND TERMS  */
.privacy-body {
  padding: var(--section-padding-sm);
  padding-top: 16px;
}

.privacy-head {
  margin-bottom: 16px;
}

.section-subheading h2 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 12px 0;
}

.privacy-body p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.privacy-body ul,
.privacy-body ol {
  margin-left: 24px;
  margin-bottom: 14px;
}

.privacy-body li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.bold {
  font-weight: 600;
}

ol {
  counter-reset: list;
}

ol > li {
  list-style: none;
}

ol > li::before {
  counter-increment: list;
  content: "(" counter(list, lower-alpha) ")";
  font-weight: 600;
}
ol > li {
  margin-bottom: 12px;
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .privacy-body {
    padding: var(--section-padding-md);
    padding-top: 24px;
  }

  .privacy-body p,
  .privacy-body li {
    font-size: 16px;
  }

  .section-subheading h2 {
    font-size: 18px;
  }

  .privacy-head {
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .privacy-body {
    padding: var(--section-padding-lg);
    padding-top: 48px;
  }

  .privacy-head {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .section-subheading h2 {
    font-size: 20px;
  }
  .privacy-body p,
  .privacy-body li {
    font-size: 18px;
  }
}

/* || FOOTER SECTION*/
.footer {
  background-color: var(--footer-bg);
  color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-cta .hero-cta-elem {
  border-color: var(--white);
  color: var(--white);
}

.footer hr {
  border: 0;
  border-top: 1px solid var(--white);
  width: 100%;
}

.foot-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.foot-head h2 {
  font-size: 16px;
  text-align: center;
  font-family: var(--font-sans);
}

.foot-end {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.socials,
.support {
  display: flex;
  width: 100%;
  justify-content: center;
}

.support {
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  gap: 4px;
  justify-content: center;
}

.links a,
.support {
  font-size: 12px;
  /* background-color: red; */
}

.support .flex-col {
  text-decoration: underline;
}

.support img {
  width: 20px;
  height: auto;
}

.socials {
  gap: 12px;
}

.socials img {
  border: 1px solid var(--white);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.flex-col {
  display: flex;
  align-items: center;
}

.foot-end p {
  font-size: 12px;
  font-family: var(--font-body);
}

.copyright {
  font-size: 10px;
}

.links {
  /* font-size: 12px; */
  display: flex;
  font-weight: 400;
  justify-content: center;
  gap: 4px;
  text-decoration: underline;
  align-items: center;
}

/* || RESPONSIVENESS BREAKPOINT*/
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .footer {
    padding: 36px 48px;
    gap: 36px;
  }

  .foot-head h2 {
    font-size: 28px;
  }

  .foot-head {
    gap: 24px;
  }

  .support img {
    width: auto;
    height: auto;
  }

  .links p,
  .support {
    font-size: 16px;
  }

  .links {
    gap: 8px;
  }

  .copyright {
    font-size: 12px;
  }
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 48px 96px;
    gap: 48px;
  }

  .foot-head h2 {
    font-size: 32px;
  }

  .links {
    gap: 12px;
  }

  .links p,
  .support {
    font-size: 18px;
  }

  .foot-end {
    flex-direction: row;
    width: 100%;
  }

  .foot-end > * {
    flex: 1;
  }

  .support {
    justify-content: flex-start;
  }

  .support img {
    width: 28px;
    height: auto;
  }

  .support {
    gap: 8px;
  }

  .socials {
    justify-content: center;
  }

  .links {
    justify-content: flex-end;
  }

  .copyright {
    display: grid;
    place-items: center end;
    font-size: 14px;
  }
}

/* CO-PILOT INTERACTIVITY SECTION */
/* === Hover & Focus === */
.nav-links a,
.nav-drawer a,
.hero-cta-elem,
.button,
.join-btn,
.drawer-btn,
.hero-cta-elem .hero-cta-elem-big,
.card,
.socials a img {
  transition: transform var(--ease-default), box-shadow var(--ease-default),
    opacity var(--ease-default), background-color var(--ease-default);
  -webkit-tap-highlight-color: transparent;
}

/* Primary buttons: subtle lift */
/* .button,
.join-btn,
.drawer-btn {
  will-change: transform, box-shadow;
  border-radius: 12px;
  padding: 10px 18px;
  background-color: var(--black);
  color: var(--white);
  box-shadow: none;
} */

/* Hover: warmer tint and small lift */
.button:hover,
.join-btn:hover,
.drawer-btn:hover,
.button:focus-visible,
.join-btn:focus-visible,
.drawer-btn:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.12);
}

/* If primary branded hover desired, use a subtle orange accent on focus */
.join-btn:hover,
.drawer-btn:hover {
  background-color: #111111;
}

/* Hero CTA tiles: soft background tint and lift */

.hero-cta-elem:hover,
.hero-cta-elem:focus-visible {
  background-color: rgba(254, 142, 1, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}

/* Nav link hover color shift (subtle) */
.nav-links a:hover,
.nav-drawer a:hover {
  color: var(--brand-orange);
}

/* Social icons: scale-up and soften shadow (unchanged) */
.socials a img:hover,
.socials a img:focus-visible {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
}

/* Cards already lift on hover; ensure smooth transition */
.card {
  transition: transform var(--ease-default), box-shadow var(--ease-default);
}
.card:hover {
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
}

/* Accessible focus outlines: clear, soft brand tint */
:focus-visible {
  outline: 3px solid rgba(254, 142, 1, 0.14);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .nav-links a,
  .nav-drawer a,
  .hero-cta-elem,
  .button,
  .join-btn,
  .drawer-btn,
  .card,
  .socials a img {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Transition tuning: faster transforms, lighter shadows */
.nav-links a,
.nav-drawer a,
.hero-cta-elem,
.button,
.join-btn,
.drawer-btn,
.card,
.socials a img {
  transition: transform 180ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 220ms ease, opacity 180ms ease, background-color 200ms ease;
  will-change: transform, box-shadow;
}

/* Unified hover appearance: small lift + light neutral shadow */
.button:hover,
.join-btn:hover,
.drawer-btn:hover,
.hero-cta-elem:hover,
.card:hover,
.socials a img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.06);
}

/* end of stylesheet */
