/* ============================================================
   AMINOLABSPRO.COM — custom.css
   Haupt-Design: Variables, Base, Header, Hero, Sections, Footer
   Mobile-first — Responsive Overrides in responsive.css
   ============================================================ */

/* ============================================================
   CSS VARIABLES (Designsystem)
   ============================================================ */
:root {
  /* Farben — aus Logo abgeleitet */
  --mint:        #6EDAB4;
  --mint-dark:   #4DC49A;
  --mint-bg:     #F0FBF7;
  --mint-mid:    #D4F3E8;
  --ink:         #1A1F2E;   /* "amino" dunkelblau-grau */
  --mid:         #5A6478;   /* Sekundärtext */
  --muted:       #8A9BB0;   /* "PEPTIDE RESEARCH" grau */
  --line:        #E4EBF0;   /* Trennlinien */
  --bg:          #FFFFFF;
  --bg2:         #F7FAFB;   /* Hellgraue Sections */
  --bg3:         #EEF3F7;   /* Noch etwas dunkler */

  /* Typografie */
  --font-d:      'Space Grotesk', sans-serif;   /* Headlines */
  --font-b:      'Inter', sans-serif;           /* Bodytext */

  /* Abstände & Radien */
  --r:           8px;
  --r-lg:        16px;
  --r-xl:        24px;

  /* Schatten */
  --shadow:      0 2px 16px rgba(26,31,46,0.07);
  --shadow-lg:   0 8px 40px rgba(26,31,46,0.11);
  --shadow-mint: 0 6px 24px rgba(110,218,180,0.35);

  /* Transition */
  --t:           0.22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--mint-dark);
  text-decoration: none;
  transition: color var(--t);
}

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

button { font-family: var(--font-b); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 88px 20px;
}

.text-center { text-align: center; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--mint);
  flex-shrink: 0;
}

/* Section Title */
.section-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}

/* Section Subtitle */
.section-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 540px;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* Divider */
.divider {
  width: 40px;
  height: 2.5px;
  background: var(--mint);
  margin: 20px 0;
  border-radius: 2px;
}

.divider-c {
  margin: 20px auto;
}

/* Image placeholder (wird durch echte Bilder ersetzt) */
.img-ph {
  width: 100%;
  min-height: 280px;
  background: var(--bg2);
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-family: var(--font-b);
}

.img-ph svg { opacity: .4; }

/* Scroll fade animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* Legal box */
.alp-legal {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--mint);
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--mid);
  line-height: 1.65;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--mint);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--mint-dark);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-mint);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
  background: var(--mint-bg);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* ============================================================
   HEADER
   ============================================================ */
.alp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}

.alp-header.scrolled {
  box-shadow: var(--shadow);
}

.alp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.alp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.alp-logo img {
  height: 38px;
  width: auto;
}

.alp-logo-text {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1;
}

.alp-logo-text em {
  font-style: normal;
  color: var(--mint-dark);
}

.alp-logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* Navigation */
.alp-nav {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.alp-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--t);
}

.alp-nav a:hover {
  color: var(--ink);
}

/* Header right buttons */
.alp-header-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger */
.alp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.alp-burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
  display: block;
}

/* Mobile Nav */
.alp-mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.alp-mobile-nav.open {
  display: block;
}

.alp-mobile-nav ul {
  list-style: none;
}

.alp-mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.alp-mobile-nav .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.alp-hero {
  padding-top: 70px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

/* Subtiles Punktmuster rechts */
.alp-hero::after {
  content: '';
  position: absolute;
  top: 70px; right: 0; bottom: 0;
  width: 50%;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6;
  pointer-events: none;
  z-index: 0;
}

.alp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Kicker */
.alp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 20px;
}

.alp-hero-kicker::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--mint);
}

/* H1 */
.alp-hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.alp-hero-h1 .hi {
  color: var(--mint-dark);
}

/* Subtext */
.alp-hero-p {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 460px;
}

/* Buttons */
.alp-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

/* Micro trust icons */
.alp-hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.alp-micro-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
}

.alp-micro-item svg {
  color: var(--mint-dark);
  flex-shrink: 0;
}

/* Hero right image */
.alp-hero-right {
  display: none;
  position: relative;
}

.alp-hero-img-box {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-bottom: none;
}

.alp-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating badge */
.alp-hero-float {
  position: absolute;
  bottom: 32px; left: -28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.alp-float-val {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--mint-dark);
  line-height: 1;
}

.alp-float-lbl {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.4;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.alp-stats {
  background: var(--mint);
  padding: 0 20px;
}

.alp-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.alp-stat {
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.alp-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(26,31,46,0.12);
}

.alp-stat-n {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.alp-stat-l {
  font-size: 13px;
  color: rgba(26,31,46,0.65);
  font-weight: 500;
}

/* ============================================================
   USP CARDS
   ============================================================ */
.alp-usp {
  background: var(--bg);
}

.alp-usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 52px;
}

.alp-usp-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.alp-usp-card:hover {
  border-color: var(--mint);
  box-shadow: 0 4px 24px rgba(110,218,180,0.18);
  transform: translateY(-2px);
}

.alp-usp-icon {
  width: 46px;
  height: 46px;
  background: var(--mint-bg);
  border: 1px solid var(--mint-mid);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.alp-usp-icon svg { color: var(--mint-dark); }

.alp-usp-title {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.alp-usp-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.alp-products {
  background: var(--bg2);
}

.alp-prod-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}

.alp-prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Product Card */
.alp-prod-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.alp-prod-card:hover {
  border-color: var(--mint);
  box-shadow: 0 6px 32px rgba(110,218,180,0.15);
  transform: translateY(-3px);
}

.alp-prod-img {
  aspect-ratio: 1;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}

.alp-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.alp-prod-card:hover .alp-prod-img img {
  transform: scale(1.04);
}

.alp-prod-purity {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--bg);
  border: 1px solid var(--mint);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--mint-dark);
  letter-spacing: .5px;
}

.alp-prod-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.alp-prod-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 6px;
}

.alp-prod-name {
  font-family: var(--font-d);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}

.alp-prod-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.alp-prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.alp-prod-price {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.alp-how {
  background: var(--bg);
}

.alp-how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 52px;
  position: relative;
}

.alp-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.alp-step-n {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--mint-dark);
}

.alp-step-t {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.alp-step-p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* ============================================================
   ABOUT / SCIENCE
   ============================================================ */
.alp-about {
  background: var(--bg2);
}

.alp-about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.alp-about-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--bg3);
  order: -1;
}

.alp-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alp-about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.alp-about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}

.alp-about-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint-bg);
  border: 1.5px solid var(--mint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%234DC49A' stroke-width='2'%3E%3Cpolyline points='4 9 7.5 12.5 14 6'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   COA SECTION
   ============================================================ */
.alp-coa {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.alp-coa-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.alp-coa-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.alp-coa-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}

.alp-coa-name {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.alp-coa-badge {
  background: var(--mint-bg);
  border: 1px solid var(--mint);
  color: var(--mint-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  flex-shrink: 0;
}

.alp-coa-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alp-coa-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  gap: 16px;
}

.alp-coa-row-l { color: var(--mid); }
.alp-coa-row-v { color: var(--ink); font-weight: 500; text-align: right; }
.alp-coa-row-v.ok { color: var(--mint-dark); font-weight: 600; }

/* ============================================================
   REVIEWS
   ============================================================ */
.alp-reviews {
  background: var(--bg2);
}

.alp-rev-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.alp-rev-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px;
}

.alp-rev-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.alp-rev-stars svg { color: var(--mint-dark); }

.alp-rev-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.72;
  margin-bottom: 18px;
  font-style: italic;
}

.alp-rev-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.alp-rev-ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--line);
  overflow: hidden;
  flex-shrink: 0;
}

.alp-rev-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.alp-rev-role {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.alp-faq {
  background: var(--bg);
}

.alp-faq-list {
  max-width: 720px;
  margin: 44px auto 0;
}

.alp-faq-item {
  border-bottom: 1px solid var(--line);
}

.alp-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  gap: 16px;
  transition: color var(--t);
}

.alp-faq-q:hover { color: var(--mint-dark); }

.alp-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
  transition: all var(--t);
}

.alp-faq-item.open .alp-faq-icon {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--bg);
  transform: rotate(45deg);
}

.alp-faq-a {
  display: none;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  padding-bottom: 20px;
  padding-right: 42px;
}

.alp-faq-item.open .alp-faq-a { display: block; }

/* ============================================================
   NEWSLETTER / CTA BANNER
   ============================================================ */
.alp-cta {
  background: linear-gradient(135deg, var(--mint-bg) 0%, #E8F7F2 100%);
  border-top: 1px solid var(--mint-mid);
  border-bottom: 1px solid var(--mint-mid);
  padding: 80px 20px;
}

.alp-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.alp-cta-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.alp-cta-input {
  flex: 1;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-b);
  outline: none;
  transition: border-color var(--t);
}

.alp-cta-input::placeholder { color: var(--muted); }
.alp-cta-input:focus { border-color: var(--mint); }

.alp-cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--mid);
}

/* ============================================================
   FOOTER
   ============================================================ */
.alp-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 64px 20px 32px;
}

.alp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.alp-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.alp-footer-brand .alp-logo-text { color: var(--bg); }
.alp-footer-brand .alp-logo-text em { color: var(--mint); }

.alp-footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.alp-footer-disc {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
  max-width: 280px;
}

.alp-footer-col h4 {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.alp-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.alp-footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}

.alp-footer-col ul li a:hover { color: var(--mint); }

.alp-footer-bot {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.alp-footer-bot p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.alp-footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.alp-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--t);
}

.alp-footer-links a:hover { color: var(--mint); }
