:root {
  --primary:       #64004e;
  --black:         #000000;
  --gray:          #b2b2b2;
  --white:         #FFFFFF;
  --primary-mid:   #8b0064;
  --primary-dark:  #3e0030;
  --accent:        #ff8cfa;
  --accent-light:  #ffe4fd;
  --accent-soft:   #fff0fe;
  --gray-light:    #e0e0e0;
  --gray-dark:     #555555;
  --error:         #b30000;
  --error-bg:      #fff0f0;
  --heading:  'League Spartan',  sans-serif;
  --body:     'IBM Plex Serif',  serif;
  --quote:    'Shrikhand',       cursive;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--body);
  background: var(--accent-soft);
  color: var(--black);
  min-height: 100vh;
}

/* ───────────────────────────────────────────
   MATERIAL SYMBOLS
─────────────────────────────────────────── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}

/* ───────────────────────────────────────────
   TOP NAV
─────────────────────────────────────────── */
.infosys-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              background 0.3s ease,
              box-shadow 0.3s ease,
              backdrop-filter 0.3s ease;
}
.infosys-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 92px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

/* Scrolled state */
.infosys-nav.scrolled {
  background: rgba(255,255,255,0.80);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Brand */
.infosys-brand { display: flex; align-items: center; gap: 12px; }

/* Logo */
.site-logo {
  display: block;
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.infosys-nav.scrolled .site-logo { filter: none; }

/* Hamburger button */
.nav-menu-button {
  width: 56px; height: 56px;
  border: 0; border-radius: 50%;
  background: #ffffff;
  color: #151841;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-menu-button:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,.20); }
.hbg-bars { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 22px; height: 16px; }
.hbg-bar { display: block; width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-menu-button.is-open .hbg-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-button.is-open .hbg-bar:nth-child(2) { opacity: 0; }
.nav-menu-button.is-open .hbg-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Centre pill links */
.nav-pill {
  justify-self: center;
  display: flex; align-items: center; gap: 4px;
  min-height: 46px; padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
  transition: background 0.3s ease;
}
.infosys-nav.scrolled .nav-pill { background: rgba(0,0,0,0.06); }
.nav-pill a {
  display: inline-flex; align-items: center;
  min-height: 46px; padding: 0 24px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-pill a:hover { background: rgba(255,255,255,.15); color: #ffffff; }
.infosys-nav.scrolled .nav-pill a { color: #121644; }
.infosys-nav.scrolled .nav-pill a:hover { color: #64004e; background: rgba(100,0,78,.06); }

/* CTA action */
.nav-action {
  justify-self: end;
  display: inline-flex; align-items: center;
  min-height: 46px; padding: 0 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-action:hover { background: rgba(255,255,255,.20); color: #ffffff; }
.infosys-nav.scrolled .nav-action { background: rgba(0,0,0,.06); color: #121644; border-color: rgba(0,0,0,.12); }
.infosys-nav.scrolled .nav-action:hover { color: #64004e; }

/* Mobile – hide pill & action */
@media(max-width: 980px) {
  .infosys-nav-inner { min-height: 82px; padding: 0 20px; grid-template-columns: auto 1fr; gap: 16px; }
  .nav-pill, .nav-action { display: none; }
  .site-logo { width: 154px; }
}

/* ── HAMBURGER OVERLAY MENU ── */
.hanvix-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 320px 1fr;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hanvix-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.hanvix-menu-sidebar {
    position: relative;
    background: #f1f2f7;
    padding: 100px 32px 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.hanvix-menu-close {
    position: absolute;
    top: 28px;
    left: 18px;
    cursor: pointer;
    background: #ffffff;
    border-radius: 50%;
    border: none;
    z-index: 20;
    width: 56px;
    height: 56px;
    overflow: hidden;
    transition-duration: 500ms;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.hanvix-menu-close .close-text {
    font-size: 1.875rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    line-height: 1;
    padding-bottom: 7px;
    transition-duration: 500ms;
    position: relative;
    z-index: 10;
}

.hanvix-menu-close:hover .close-text {
    transform: scale(0);
}

.hanvix-menu-close .close-span {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
    background-color: #64004e;
    transition-duration: 500ms;
}

.hanvix-menu-close .cs-t {
    top: 5rem;
    left: 0;
}

.hanvix-menu-close:hover .cs-t {
    top: 2.25rem;
}

.hanvix-menu-close .cs-l {
    top: 0;
    left: 5rem;
}

.hanvix-menu-close:hover .cs-l {
    left: 2.25rem;
}

.hanvix-menu-close .cs-r {
    top: 0;
    right: 5rem;
}

.hanvix-menu-close:hover .cs-r {
    right: 2.25rem;
}

.hanvix-menu-close .cs-b {
    bottom: 5rem;
    right: 0;
}

.hanvix-menu-close:hover .cs-b {
    bottom: 2.25rem;
}

.hanvix-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hanvix-menu-links a {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #4a4a68;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.hanvix-menu-links a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #121644;
}

.hanvix-menu-link.active {
    background: #ffffff;
    color: #64004e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hanvix-menu-link.active::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #64004e;
    border-radius: 4px;
    margin-right: 12px;
    vertical-align: -3px;
}

.hanvix-menu-links-simple {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    gap: 2px;
}

.hanvix-menu-links-simple a {
    font-size: 15px;
    font-weight: 400;
    color: #6a6a88;
    padding: 10px 16px;
}

.hanvix-menu-social {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 18px;
}

.hanvix-menu-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: #4a4a68;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s ease, color 0.2s ease;
}

.hanvix-menu-social a:hover {
    background: #64004e;
    color: #ffffff;
}

.hanvix-menu-panel {
    background: #ffffff;
    padding: 100px 56px 56px;
    overflow-y: auto;
}

.hanvix-menu-panel-inner {
    position: relative;
}

.hanvix-card-section {
    display: none;
}

.hanvix-card-section.active {
    display: block;
    animation: hanvixScaleIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes hanvixScaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hanvix-scale-out {
    display: block;
    position: absolute;
    inset: 0;
    animation: hanvixScaleOut 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes hanvixScaleOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}

.hanvix-menu-heading {
    font-family: 'League Spartan', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #121644;
    margin-bottom: 36px;
}

.hanvix-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hanvix-card {
    position: relative;
    display: block;
    height: 280px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hanvix-card-tall {
    grid-row: span 2;
    height: 584px;
}

.hanvix-card:hover {
    transform: translateY(-4px);
}

.hanvix-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
}

.hanvix-card-title {
    position: absolute;
    left: 24px;
    bottom: 56px;
    right: 24px;
    z-index: 2;
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.hanvix-card-link {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 2;
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hanvix-card-link i {
    font-size: 14px;
}

@media (max-width: 980px) {
    .hanvix-menu-overlay {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    .hanvix-menu-sidebar {
        padding: 88px 24px 24px;
    }
    .hanvix-menu-panel {
        padding: 24px;
    }
    .hanvix-card-grid {
        grid-template-columns: 1fr;
    }
    .hanvix-card-tall {
        grid-row: span 1;
        height: 280px;
    }
}


/* ───────────────────────────────────────────
   PAGE HEADER (no video — clean banner)
─────────────────────────────────────────── */
.page-header {
  background: var(--primary);
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: 9rem 8% 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,250,.14) 0%, transparent 66%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; }
.page-header-eye {
  font-family: var(--heading);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.page-header-eye::before { content: '//'; opacity: 0.5; color: rgba(255,255,255,.5); }
.page-header h1 {
  font-family: var(--heading);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.page-header h1 em {
  font-family: var(--quote);
  font-style: normal;
  color: var(--accent);
  font-weight: 400;
}

@media(max-width: 768px) {
  .page-header { padding: 8rem 5% 3rem; }
}

/* ───────────────────────────────────────────
   CONTACT BODY
─────────────────────────────────────────── */
.body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 3.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 6rem;
  align-items: start;
}

@media(max-width: 960px) {
  .body { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 5% 4rem; }
}

@media(max-width: 640px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.form-intro { margin-bottom: 2.8rem; }
.form-intro p {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.8;
  max-width: 420px;
  font-weight: 400;
}
.required-note {
  font-family: var(--heading);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.required-note .star { color: var(--error); font-size: 0.8rem; font-weight: 700; }

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  background: var(--error-bg);
  border: 1px solid rgba(179,0,0,0.2);
  border-left: 3px solid var(--error);
  border-radius: 6px;
  margin-bottom: 1.6rem;
  font-family: var(--heading);
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--error);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.form-alert.show { display: flex; }
.form-alert-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--error);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700;
  margin-top: 1px;
}

.form { display: flex; flex-direction: column; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.field-row.solo { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; }

.field label {
  font-family: var(--heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.field label .req { color: var(--error); margin-left: 2px; font-size: 0.75rem; }

.field input,
.field textarea,
.field select {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--gray-light);
  border-radius: 0;
  padding: 0.55rem 0;
  outline: none;
  width: 100%;
  transition: border-color 0.22s;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray);
  font-size: 0.9rem;
  font-style: italic;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--primary); }
.field textarea { resize: none; height: 100px; line-height: 1.7; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238b0064' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
  color: var(--gray-dark);
}
.field select option { color: var(--black); }

.field-error {
  font-family: var(--heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--error);
  margin-top: 0.42rem;
  min-height: 1rem;
  display: none;
  align-items: center;
  gap: 0.32rem;
  text-transform: uppercase;
}
.field-error::before {
  content: '!';
  display: inline-flex; align-items: center; justify-content: center;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--error); color: #fff;
  font-size: 0.5rem; font-weight: 700;
  flex-shrink: 0;
}
.field.invalid .field-error { display: flex; }
.field.invalid input,
.field.invalid textarea,
.field.invalid select { border-bottom-color: var(--error); }
.field.invalid label    { color: var(--error); }
.field.valid  input,
.field.valid  textarea,
.field.valid  select    { border-bottom-color: #1a8a5a; }

.submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.6rem;
}
.btn {
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 0.95rem 2.4rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn:hover         { background: var(--primary-mid); transform: translateY(-1px); }
.btn:active        { transform: translateY(0); }
.btn:disabled      { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn .arr          { display: inline-block; transition: transform 0.2s; }
.btn:not(:disabled):hover .arr { transform: translateX(4px); }

.submit-note {
  font-family: var(--body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gray-dark);
}

.thankyou {
  display: none;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.8rem;
  border: 1px solid var(--accent-light);
  border-radius: 10px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.thankyou.show { display: flex; }
.thankyou::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.ty-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
}
.ty-icon svg { width: 22px; height: 22px; stroke: var(--primary); stroke-width: 2.5; fill: none; }
.ty-tag {
  font-family: var(--heading);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-mid);
}
.ty-heading {
  font-family: var(--heading);
  font-size: 2rem; font-weight: 800;
  color: var(--black); line-height: 1.1; letter-spacing: -0.02em;
}
.ty-heading em {
  font-family: var(--quote);
  font-style: normal; font-weight: 400; color: var(--primary);
}
.ty-body {
  font-family: var(--body);
  font-size: 0.92rem; color: var(--gray-dark); line-height: 1.8;
}
.ty-name { color: var(--primary); font-weight: 600; }
.ty-meta {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.1rem 1.3rem;
  background: var(--accent-soft);
  border-radius: 6px;
}
.ty-meta-row {
  font-family: var(--body);
  font-size: 0.82rem; color: var(--gray-dark);
  display: flex; gap: 0.7rem;
}
.ty-meta-row strong {
  font-family: var(--heading);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); min-width: 68px; margin-top: 2px;
}
.ty-divider { height: 1px; background: var(--accent-light); }

/* ── RIGHT: details card ── */
.details {
  background-color: var(--primary-mid);
  background-image:
    linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 30px 30px;
  border-radius: 10px;
  padding: 2.8rem;
  position: sticky; top: 6rem;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(139,0,100,0.35);
}
.details::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,250,0.20) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.details-inner { position: relative; z-index: 1; }
.details-eye {
  font-family: var(--heading);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--white); display: block; margin-bottom: 1.4rem;
}
.details h3 {
  font-family: var(--heading);
  font-size: 1.7rem; font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 2rem; letter-spacing: -0.02em;
}
.details h3 em { font-family: var(--quote); font-style: normal; font-weight: 400; color: var(--accent); }

.detail-list { display: flex; flex-direction: column; }
.detail-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.detail-item:first-child { border-top: 1px solid rgba(255,255,255,0.18); }
.detail-lbl {
  font-family: var(--heading);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.35rem; display: block;
}
.detail-val {
  font-family: var(--body);
  font-size: 0.9rem; color: var(--white); line-height: 1.55; font-weight: 500;
}
.detail-val a { color: var(--white); text-decoration: none; font-weight: 600; transition: opacity 0.18s; }
.detail-val a:hover { opacity: 0.72; }

.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.70);
  transition: 0.2s; background: rgba(255,255,255,0.08);
}
.social-btn:hover { background: rgba(255,255,255,0.18); border-color: var(--white); color: var(--white); }
.ico { width: 16px; height: 16px; fill: currentColor; display: block; }

.details-brand {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.logo-box {
  width: 100%; max-width: 100%; height: auto;
  background: #ffffff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.6);
  text-decoration: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.logo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.30), 0 0 0 1px rgba(255,255,255,0.8);
  opacity: 0.92;
}
.logo-box img {
  width: 100%; max-width: 280px; height: auto;
  display: block; object-fit: contain;
  filter: contrast(1.4) saturate(1.2);
}

/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
footer {
  background: #3f0030;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,.08);
}
.container { max-width: 1440px; margin: 0 auto; padding: 0 80px; }

@media(max-width: 1024px) {
  .container { padding: 0 32px; }
}
@media(max-width: 640px) {
  .container { padding: 0 20px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; padding: 72px 0 56px;
}

@media(max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media(max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 0 36px;
  }
}

.footer-brand-logo { display: block; width: 180px; height: auto; object-fit: contain; margin-bottom: 16px; color: rgb(255, 255, 255); }
.footer-col > p {
  opacity: 0.70; font-family: 'IBM Plex Serif', serif;
  font-size: .88rem; line-height: 1.78; color: #ffffff; max-width: 230px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.footer-socials a:hover { background: #ff8cfa; border-color: #ff8cfa; color: #3f0030; transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'League Spartan', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.50); margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a {
  color: rgba(255,255,255,.72); font-family: 'IBM Plex Serif', serif;
  font-size: .9rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s, gap .2s;
}
.footer-col ul li a::before {
  content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,140,250,.45); flex-shrink: 0; transition: background .2s, transform .2s;
}
.footer-col ul li a:hover { color: #ff8cfa; }
.footer-col ul li a:hover::before { background: #ff8cfa; transform: scale(1.5); }