/* ============================================================
   MANGALAM STEEL — DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=IBM+Plex+Mono:wght@400;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --black:    #0D0D0D;
  --white:    #F5F5F3;
  --steel:    #1C2B3A;
  --brand:    #D4572A;   /* Mangalam orange — primary accent */
  --brand-dark: #B54621; /* darker orange for hover states */
  --green:    #2D5A3D;   /* kept for sustainability sections only */
  --blue:     #3A6B8A;
  --slate:    #6B7280;
  --silver:   #C0C6CC;
  --charcoal: #2D2D2D;   /* logo text colour */
  --pure-white: #ffffff;

  --font-head: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 0px;
  --transition: 200ms ease;
  --max-w: 1200px;
  --section-pad: 96px 24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--black); line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { color: var(--black); line-height: 1.75; }
.label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.mono { font-family: var(--font-mono); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section--dark { background: var(--steel); color: var(--pure-white); }
.section--dark p, .section--dark .label { color: rgba(255,255,255,0.7); }
.section--black { background: var(--black); color: var(--pure-white); }
.section--black p, .section--black .label { color: rgba(255,255,255,0.65); }
.section--green { background: var(--green); color: var(--pure-white); }
.section--green p, .section--green .label { color: rgba(255,255,255,0.8); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; }
.btn-primary { background: var(--brand); color: var(--pure-white); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { background: transparent; color: var(--pure-white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--pure-white); background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--pure-white); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── NAVIGATION ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 24px; background: rgba(12,12,12,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-mark { width: 34px; height: 34px; background: var(--brand); display: flex; align-items: center; justify-content: center; }
.nav__logo-mark svg { width: 18px; height: 18px; fill: white; }
.nav__logo-text { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--pure-white); letter-spacing: -0.01em; }
.nav__logo-sub { font-size: 10px; color: var(--silver); letter-spacing: 0.08em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); padding: 8px 12px; transition: color var(--transition); white-space: nowrap; }
.nav__link:hover, .nav__link.active { color: var(--pure-white); }
.nav__cta { margin-left: 12px; padding: 9px 20px; background: var(--brand); color: var(--pure-white); font-size: 14px; font-weight: 600; font-family: var(--font-body); transition: background var(--transition); }
.nav__cta:hover { background: var(--brand-dark); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: white; transition: var(--transition); }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--black); z-index: 99; padding: 100px 32px 40px; overflow-y: auto; }
.mobile-nav.open { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a { display: block; font-size: 24px; font-weight: 600; font-family: var(--font-head); color: white; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav .close-btn { position: absolute; top: 24px; right: 24px; font-size: 28px; color: white; cursor: pointer; background: none; border: none; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 68px; }
.hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0a1520 0%, #1a2a35 50%, #0d1a10 100%); }
.hero__pattern { position: absolute; inset: 0; opacity: 0.03; background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.8) 60px, rgba(255,255,255,0.8) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.8) 60px, rgba(255,255,255,0.8) 61px); }
.hero__content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 80px 24px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.hero__eyebrow-line { width: 32px; height: 1.5px; background: var(--brand); }
.hero__eyebrow-text { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero__title { color: var(--pure-white); max-width: 820px; line-height: 1.0; }
.hero__title em { color: var(--brand); font-style: normal; }
.hero__sub { margin-top: 28px; font-size: 19px; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.65; }
.hero__actions { margin-top: 44px; }
.hero__scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.35); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); }

/* ── PAGE HERO (interior) ── */
.page-hero { background: var(--steel); padding: 120px 24px 60px; }
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero__breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero__breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.page-hero__title { color: var(--pure-white); font-size: clamp(32px, 5vw, 56px); }
.page-hero__sub { margin-top: 16px; font-size: 18px; color: rgba(255,255,255,0.6); max-width: 600px; }

/* ── STATS ── */
.stats-band { background: var(--pure-white); padding: 56px 24px; border-bottom: 1px solid var(--silver); }
.stats-band__inner { max-width: var(--max-w); margin: 0 auto; }
.stat-item { text-align: center; padding: 16px; }
.stat-item__number { font-family: var(--font-mono); font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: var(--steel); line-height: 1; }
.stat-item__label { font-size: 13px; font-weight: 500; color: var(--slate); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-item__divider { width: 24px; height: 2px; background: var(--brand); margin: 12px auto 0; }

/* ── CARDS ── */
.card { background: var(--pure-white); border: 1px solid rgba(0,0,0,0.08); padding: 36px; transition: border-color var(--transition), transform var(--transition); }
.card:hover { border-color: var(--brand); transform: translateY(-2px); }
.card--dark { background: #131F2B; border-color: rgba(255,255,255,0.06); }
.card--dark:hover { border-color: var(--blue); }
.card__icon { width: 44px; height: 44px; margin-bottom: 24px; }
.card__icon svg { width: 44px; height: 44px; stroke: var(--brand); fill: none; stroke-width: 1.5; }
.card--dark .card__icon svg { stroke: var(--silver); }
.card__title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.card--dark .card__title { color: var(--pure-white); }
.card__body { font-size: 15px; line-height: 1.7; color: var(--slate); }
.card--dark .card__body { color: rgba(255,255,255,0.55); }
.card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--brand); margin-top: 20px; transition: gap var(--transition); }
.card__link:hover { gap: 10px; }
.card--dark .card__link { color: var(--silver); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header__title { margin-top: 12px; }
.section-header__sub { margin-top: 16px; font-size: 18px; color: var(--slate); max-width: 580px; }
.section-header--center .section-header__sub { margin-left: auto; margin-right: auto; }

/* ── WHO WE ARE ── */
.who-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: linear-gradient(135deg, #1a2e3f 0%, #0f1e2a 100%); position: relative; overflow: hidden; }
.who-img::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.who-img-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.who-img-text { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.15); text-align: center; padding: 24px; }

/* ── INDUSTRIES GRID ── */
.industry-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 16px; border: 1px solid rgba(0,0,0,0.06); transition: border-color var(--transition), background var(--transition); cursor: pointer; text-decoration: none; }
.industry-card:hover { border-color: var(--brand); background: rgba(212,87,42,0.04); }
.industry-card__icon { width: 48px; height: 48px; margin-bottom: 14px; }
.industry-card__icon svg { width: 48px; height: 48px; stroke: var(--brand); fill: none; stroke-width: 1.5; }
.industry-card__name { font-size: 14px; font-weight: 600; color: var(--black); }

/* ── SUSTAINABILITY BANNER ── */
.sus-banner { background: var(--brand); padding: 96px 24px; text-align: center; }
.sus-banner h2 { color: white; font-size: clamp(28px, 4vw, 44px); max-width: 700px; margin: 0 auto; line-height: 1.2; }
.sus-banner p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 20px auto 0; font-size: 18px; }
.sus-banner .btn-group { justify-content: center; margin-top: 36px; }

/* ── WHY MANGALAM ── */
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; }
.why-list__check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.why-list__check svg { width: 11px; height: 11px; stroke: white; stroke-width: 2.5; fill: none; }
.why-quote { font-family: var(--font-head); font-size: clamp(22px, 3vw, 32px); font-style: italic; font-weight: 700; color: var(--steel); line-height: 1.3; padding: 40px; border-left: 3px solid var(--brand); }

/* ── BLOG CARDS ── */
.blog-card { display: block; text-decoration: none; }
.blog-card__img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--steel) 0%, #0f1e2a 100%); position: relative; overflow: hidden; }
.blog-card__img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.blog-card__img-placeholder svg { width: 40px; height: 40px; stroke: rgba(255,255,255,0.15); fill: none; }
.blog-card__content { padding: 24px 0; }
.blog-card__cat { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.blog-card__title { font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--black); margin-bottom: 10px; transition: color var(--transition); }
.blog-card:hover .blog-card__title { color: var(--brand); }
.blog-card__date { font-size: 13px; color: var(--slate); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--steel); padding: 96px 24px; text-align: center; }
.cta-banner h2 { color: white; font-size: clamp(28px, 4vw, 44px); }
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 16px auto 0; font-size: 18px; }
.cta-banner .btn-group { justify-content: center; margin-top: 36px; }

/* ── FOOTER ── */
.footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 72px 24px 32px; }
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; }
.footer__brand-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__links a:hover { color: white; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; flex-wrap: wrap; gap: 16px; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 50; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform var(--transition); }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ── VALUE LIST ── */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.value-item__name { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 2px solid var(--brand); display: inline-block; }
.value-item__desc { font-size: 15px; color: var(--slate); line-height: 1.65; margin-top: 12px; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid rgba(0,0,0,0.07); align-items: start; }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--brand); padding-top: 4px; }
.timeline-content h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { font-size: 15px; color: var(--slate); line-height: 1.7; }

/* ── IMPACT STATS ── */
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; background: var(--silver); }
.impact-item { background: var(--brand); padding: 48px 36px; }
.impact-item__num { font-family: var(--font-mono); font-size: clamp(36px, 5vw, 52px); font-weight: 700; color: white; line-height: 1; }
.impact-item__label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.impact-item__desc { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 10px; line-height: 1.55; }

/* ── CAREERS ── */
.jobs-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.jobs-table th { text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); padding: 12px 20px; border-bottom: 2px solid var(--silver); }
.jobs-table td { padding: 20px; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 15px; vertical-align: middle; }
.jobs-table tr:hover td { background: rgba(212,87,42,0.03); }
.jobs-table .apply-link { font-size: 13px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 4px; }
.jobs-table .apply-link:hover { text-decoration: underline; }
.job-dept { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); }

/* ── CONTACT ── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--black); letter-spacing: 0.03em; }
.form-group input, .form-group textarea, .form-group select { font-family: var(--font-body); font-size: 15px; padding: 13px 16px; border: 1.5px solid var(--silver); background: white; color: var(--black); outline: none; transition: border-color var(--transition); border-radius: 0; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--brand); }
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item__icon { width: 40px; height: 40px; background: rgba(212,87,42,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item__icon svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 2; }
.contact-info-item__label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); margin-bottom: 4px; }
.contact-info-item__value { font-size: 16px; color: var(--black); }

/* ── PILLARS ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--silver); margin-top: 56px; }
.pillar { background: white; padding: 48px 36px; }
.pillar__letter { font-family: var(--font-mono); font-size: 48px; font-weight: 700; color: var(--brand); opacity: 0.2; line-height: 1; margin-bottom: 16px; }
.pillar__title { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.pillar__body { font-size: 15px; color: var(--slate); line-height: 1.7; }

/* ── PROSE ── */
.prose { max-width: 720px; }
.prose p { font-size: 17px; line-height: 1.8; color: #2a2a2a; margin-bottom: 24px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { font-size: 22px; margin: 40px 0 14px; }
.prose ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.prose ul li { font-size: 16px; color: var(--slate); line-height: 1.65; }

/* ── PULL QUOTE ── */
.pull-quote { font-size: clamp(22px, 3vw, 34px); font-weight: 700; font-style: italic; font-family: var(--font-head); line-height: 1.3; color: var(--steel); padding: 40px 0; border-top: 3px solid var(--brand); border-bottom: 1px solid var(--silver); margin: 48px 0; }

/* ── ESG DIAGRAM ── */
.circular-diagram { display: flex; justify-content: center; padding: 64px 0; }
.circ-svg { width: 100%; max-width: 600px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px 20px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 20px; }
  .why-quote { padding: 28px; font-size: 20px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .jobs-table th:nth-child(3), .jobs-table td:nth-child(3) { display: none; }
}
