@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* =====================================================================
   Gapporov Academy — British Council IELTS-inspired system
   Red utility strip · deep indigo bar · cyan/grey tab navigation.
   Clean sans typography. Same component class names as before, so the
   body of the site keeps working — only the palette and header change.
   ===================================================================== */

:root {
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ink: #241F2E;         /* content text */
  --indigo: #482A80;      /* deep royal violet — main bar + brand */
  --indigo-dark: #35205E;
  --brand: #482A80;       /* buttons / links */
  --brand-dark: #35205E;
  --red: #35205E;
  --cyan: #C39A3D;        /* gold — top bar + accents */
  --nav-cyan: #17BEE8;    /* bright cyan — nav tabs + Courses dropdown */
  --nav-cyan-dark: #10A6CE;
  --link: #482A80;
  --accent: #C39A3D;      /* gold — eyebrows, small accents */

  --paper: #F5F4F9;
  --surface: #FFFFFF;
  --tint: #ECE7F5;        /* pale violet fill */
  --tab-bg: #ECEBF0;
  --line: #E4E1EC;
  --muted: #5B5668;

  --radius: 8px;
  --radius-sm: 5px;
  --shadow: 0 1px 2px rgba(20, 22, 34, .05), 0 14px 34px rgba(20, 22, 34, .07);
  --shadow-soft: 0 1px 2px rgba(20, 22, 34, .04), 0 6px 18px rgba(20, 22, 34, .05);
}

* { box-sizing: border-box; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 700; letter-spacing: -.01em; color: var(--ink); }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--brand-dark); }

/* ── buttons ── */
.btn { border-radius: var(--radius-sm); font-weight: 600; letter-spacing: .005em; padding: .55rem 1.2rem; transition: transform .14s ease, box-shadow .2s ease, background .18s ease, border-color .18s ease, color .18s ease; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .7rem 1.6rem; font-size: 1rem; }
.btn-primary { background: var(--brand); border: 1px solid var(--brand); color: #fff; }
.btn-primary:hover, .btn-primary:focus { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(42, 37, 104, .24); }
.btn-outline-primary { color: var(--brand); border: 1px solid var(--brand); background: transparent; }
.btn-outline-primary:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-light { background: #fff; border: 1px solid #fff; color: var(--brand); font-weight: 600; }
.btn-light:hover { background: #fff; color: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 0, 0, .14); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--brand); }

/* =====================================================================
   HEADER — British Council style
   ===================================================================== */
.bc-head { font-family: var(--sans); }

/* light-red utility strip */
.bc-topbar { background: #E24C5B; }
.bc-topbar-inner { display: flex; justify-content: flex-end; }
.bc-util { display: flex; align-items: stretch; }
.bc-util-box { background: transparent; display: flex; align-items: center; transition: background .15s ease; }
.bc-util-box + .bc-util-box { border-left: 1px solid rgba(255, 255, 255, .22); }
.bc-util-box:hover { background: rgba(255, 255, 255, .14); }
.bc-util-btn { background: transparent; border: 0; color: #FFFFFF; font-size: 14px; font-weight: 600; padding: 11px 18px; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.bc-util-btn:hover { color: #FFE1E5; }
.bc-util-btn i { font-size: 13px; }
.bc-util-cta { background: #FFFFFF; border-left: 0; }
.bc-util-cta:hover { background: #F0EEF8; }
a.bc-util-cta, a.bc-util-cta .bc-util-btn { color: var(--brand); }
a.bc-util-cta:hover { color: var(--brand-dark); }
.bc-util .dropdown-menu { margin-top: 4px !important; }

/* expanding search field */
.bc-search { background: #F3F2F6; border-bottom: 1px solid var(--line); }
.bc-search .container { padding: 16px 12px; }
.bc-search-form { position: relative; display: flex; align-items: center; }
.bc-search-input { width: 100%; border: 0; border-bottom: 2px solid var(--brand); background: transparent; padding: 10px 44px 10px 2px; font-size: 22px; font-weight: 400; color: var(--ink); outline: none; }
.bc-search-input::placeholder { color: #9A97A8; }
.bc-search-go { position: absolute; right: 2px; top: 50%; transform: translateY(-50%); background: transparent; border: 0; color: var(--brand); font-size: 20px; cursor: pointer; padding: 6px 8px; }
.bc-search-go:hover { color: var(--brand-dark); }
.bc-search.show .bc-search-input { animation: search-grow .4s cubic-bezier(.2, .7, .2, 1); }

/* search results page form */
.search-page-form { position: relative; display: flex; align-items: center; max-width: 620px; }
@keyframes search-grow { from { width: 22%; } to { width: 100%; } }

/* indigo main bar */
.bc-mainbar { background: var(--indigo); }
.bc-brand-row { display: flex; align-items: center; justify-content: space-between; padding: 22px 0 4px; }
.bc-logo { display: flex; align-items: center; gap: 15px; color: #fff; }
.bc-logo:hover { color: #fff; }
.bc-logo-mark { display: grid; grid-template-columns: repeat(2, 11px); gap: 4px; }
.bc-logo-mark b { width: 11px; height: 11px; border-radius: 50%; background: #fff; display: block; }
.bc-logo-text { font-size: 27px; font-weight: 700; letter-spacing: -.015em; line-height: 1; }
.bc-logo-text em { font-style: normal; font-weight: 400; opacity: .92; }

.bc-burger { display: none; background: transparent; border: 0; color: #fff; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; cursor: pointer; }
.bc-burger-icon { display: inline-grid; gap: 4px; }
.bc-burger-icon span { width: 24px; height: 2px; background: #fff; display: block; }

/* tab navigation */
.bc-tabs { display: flex; gap: 3px; align-items: flex-end; padding-top: 20px; }
.bc-tab { background: var(--tab-bg); color: #26262D; font-size: 15px; font-weight: 600; padding: 14px 17px; border-radius: 7px 7px 0 0; line-height: 1; white-space: nowrap; transition: background .15s ease, color .15s ease; }
.bc-tab:hover { background: var(--nav-cyan); color: #06303F; }
.bc-tab.active, .bc-tab.active:hover { background: var(--nav-cyan); color: #06303F; }
.bc-tab-home { padding: 14px 15px; }
.bc-tab-home i { font-size: 15px; }
.bc-home-label { display: none; }
.bc-tab-dd { padding: 0; position: relative; }
.bc-tab-dd .bc-tab-link { display: block; padding: 14px 17px; color: inherit; font-weight: 600; }
.bc-tab-dd .dropdown-menu { margin-top: 0 !important; border-radius: 0 0 8px 8px; border: 1px solid var(--line); border-top: 0; box-shadow: var(--shadow); padding: 7px; min-width: 230px; }
.bc-tab-dd .dropdown-item { color: var(--ink); font-weight: 500; }
.bc-tab-dd .dropdown-item:hover, .bc-tab-dd .dropdown-item:focus { background: var(--nav-cyan); color: #06303F; }
.bc-tab-mobile { display: none; }

/* keep the tab row visible on desktop even though Bootstrap marks it .collapse */
@media (min-width: 992px) { #nav.bc-tabs { display: flex !important; } }

/* dropdown menu items (shared) */
.dropdown-menu { border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 7px; }
.dropdown-menu.show { animation: dd-in .16s ease both; }
@keyframes dd-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.dropdown-item { border-radius: var(--radius-sm); padding: 9px 12px; font-size: 14.5px; color: var(--ink); }
.dropdown-item:hover, .dropdown-item:focus { background: var(--tint); color: var(--brand); }

/* mobile header */
@media (max-width: 991px) {
  .bc-burger { display: inline-flex; }
  .bc-brand-row { padding: 16px 0; }
  .bc-logo-text { font-size: 22px; }
  .bc-tabs { flex-direction: column; align-items: stretch; gap: 0; padding: 4px 0 14px; }
  .bc-tab { background: transparent; color: #fff; border-radius: 0; padding: 13px 4px; border-top: 1px solid rgba(255, 255, 255, .12); }
  .bc-tab:hover { background: rgba(255, 255, 255, .06); color: #fff; }
  .bc-tab.active, .bc-tab.active:hover { background: rgba(255, 255, 255, .10); color: #fff; }
  .bc-tab-home { display: flex; align-items: center; gap: 10px; }
  .bc-home-label { display: inline; }
  .bc-tab-dd { padding: 0; }
  .bc-tab-dd .bc-tab-link { padding: 13px 4px; }
  .bc-tab-dd .dropdown-menu { position: static !important; transform: none !important; background: transparent; border: 0; box-shadow: none; padding: 0 0 6px 16px; }
  .bc-tab-dd .dropdown-item { color: #D6D8EC; }
  .bc-tab-dd .dropdown-item:hover { background: rgba(255, 255, 255, .06); color: #fff; }
  .bc-tab-mobile { display: block; padding: 16px 4px 4px; border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 6px; }
  .bc-mobile-lang { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
  .bc-mobile-lang span { font-size: 13px; color: #AAB0CC; }
  .bc-mobile-lang a { color: #fff; font-weight: 600; font-size: 14px; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; background: linear-gradient(180deg, #FBFCFE 0%, var(--paper) 100%); padding: 84px 0 76px; border-bottom: 1px solid var(--line); }
.hero-tag { display: inline-block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 18px; }
.hero-title { font-size: clamp(34px, 4.8vw, 54px); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 48ch; margin-bottom: 28px; line-height: 1.6; }
.hero-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.hero-card-h { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 18px; }
.hero-card-f { font-size: 13.5px; color: var(--muted); margin: 18px 0 0; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 22px; }
.hero-trust span { font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { color: var(--accent); font-size: 13px; }
.band-row { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px; margin-bottom: 12px; }
.band-row span { font-size: 13px; font-weight: 700; color: var(--ink); }
.band-bar { height: 7px; background: var(--tint); border-radius: 4px; overflow: hidden; }
.band-bar i { display: block; height: 100%; background: var(--indigo); border-radius: 4px; }

/* hero with team photo background — light treatment */
.hero.has-photo {
  background:
    linear-gradient(100deg, #FBFBFD 0%, rgba(251,251,253,.97) 42%, rgba(251,251,253,.80) 62%, rgba(251,251,253,.55) 100%),
    url('assets/images/team.jpg') right 30% / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 991px) {
  .hero.has-photo {
    background:
      linear-gradient(rgba(251,251,253,.94), rgba(251,251,253,.94)),
      url('assets/images/team.jpg') center / cover no-repeat;
  }
}

/* =====================================================================
   SECTIONS + COMPONENTS
   ===================================================================== */
.section { padding: 80px 0; }
.bg-soft { background: var(--surface); }
.sec-title { font-size: clamp(25px, 3vw, 32px); font-weight: 700; margin-bottom: 10px; }
.sec-sub { color: var(--muted); font-size: 17px; margin-bottom: 42px; max-width: 62ch; }

.page-head { background: linear-gradient(180deg, #FBFCFE, var(--paper)); border-bottom: 1px solid var(--line); padding: 56px 0 44px; }
.page-head h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; margin-bottom: 10px; }
.page-head p { color: var(--muted); font-size: 17px; margin: 0; }
.breadcrumb { font-size: 14px; margin-bottom: 12px; }

.card-item { background: var(--surface); border: 1px solid var(--brand); border-radius: var(--radius); padding: 26px; height: 100%; transition: box-shadow .18s ease, border-color .18s ease; animation: card-float 5s ease-in-out infinite; will-change: transform; }
.card-item:hover { box-shadow: var(--shadow); border-color: var(--brand-dark); }
@keyframes card-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
[class*="col"]:nth-child(3n+2) .card-item { animation-delay: .6s; }
[class*="col"]:nth-child(3n) .card-item { animation-delay: 1.2s; }
[class*="col"]:nth-child(5n+4) .card-item { animation-delay: 1.8s; }
.card-item h3 { font-size: 19px; font-weight: 700; line-height: 1.3; margin: 12px 0 10px; }
.card-item h3 a { color: var(--ink); }
.card-item h3 a:hover { color: var(--brand); }
.card-item p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.card-foot { display: flex; justify-content: space-between; align-items: center; font-size: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.badge-level { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); background: var(--tint); padding: 5px 11px; border-radius: 20px; }

.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; height: 100%; transition: transform .18s ease, box-shadow .18s ease; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.feature i { font-size: 20px; color: var(--brand); background: var(--tint); width: 50px; height: 50px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 18px; }
.feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 0; }


.stat-tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.stat-tile span { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.stat-tile b { font-size: 30px; font-weight: 700; font-variant-numeric: tabular-nums; }
.mini-stat b { display: block; font-size: 22px; font-weight: 700; }
.mini-stat span { font-size: 12px; color: var(--muted); }

.test-row { display: grid; grid-template-columns: 116px 1fr auto; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.test-row:hover { border-color: var(--brand); transform: translateX(3px); box-shadow: var(--shadow-soft); }
.test-skill { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); background: var(--tint); padding: 6px 9px; border-radius: 6px; text-align: center; }
.test-name { font-weight: 600; color: var(--ink); font-size: 15.5px; }
.test-meta { font-size: 13px; color: var(--muted); white-space: nowrap; }
@media (max-width: 576px) { .test-row { grid-template-columns: 1fr; } .test-skill { justify-self: start; } }

.skill-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1px solid var(--line); background: var(--surface); border-radius: 22px; padding: 7px 18px; font-size: 14px; color: var(--ink); transition: .15s; }
.chip.on, .chip:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.side-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.sticky-card { position: sticky; top: 24px; }
.card-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.price { font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.list-plain { list-style: none; padding: 0; margin: 0; }
.list-plain li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.list-plain li:last-child { border-bottom: 0; }
.lesson-list { padding-left: 20px; }
.lesson-list li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.lesson-list li.current { font-weight: 700; }
.best-score { font-size: 44px; font-weight: 700; line-height: 1; color: var(--brand); }
.best-score small { font-size: 18px; color: var(--muted); }

.prose { font-size: 17px; line-height: 1.75; }
.prose h2 { font-size: 23px; font-weight: 700; margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; }

.form-control, .form-select { border-radius: var(--radius-sm); border-color: var(--line); padding: 11px 14px; font-size: 15px; }
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(42, 37, 104, .13); }
.form-label { font-size: 14px; font-weight: 600; margin-bottom: 6px; }

.empty { text-align: center; padding: 64px 20px; color: var(--muted); }
.empty i { font-size: 34px; margin-bottom: 14px; display: block; opacity: .45; }
.err-code { font-size: 84px; font-weight: 700; color: var(--brand); line-height: 1; }
.share a { font-size: 22px; margin-left: 10px; }

/* ── cta ── */
.cta-band { background: var(--indigo); color: #fff; padding: 72px 0; }
.cta-band h2 { font-weight: 700; font-size: clamp(25px, 3.2vw, 34px); margin-bottom: 12px; color: #fff; }
.cta-band p { opacity: .9; font-size: 17px; margin-bottom: 24px; }

/* ── footer (British Council style) ── */
.site-foot { background: var(--indigo); color: #D5D7EA; padding: 64px 0 30px; border-top: 4px solid var(--cyan); }
.site-foot h6 { color: var(--cyan); font-size: 18px; font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: 18px; }
.foot-cols a { display: block; color: #D5D7EA; font-size: 15px; padding: 6px 0; text-decoration: none; transition: color .15s ease; }
.foot-cols a:hover { color: #B8BBD9; text-decoration: underline; text-underline-offset: 3px; }

.foot-social a { display: flex; align-items: center; gap: 12px; color: #D5D7EA; font-size: 15px; padding: 7px 0; }
.foot-social a:hover { color: #fff; }
.fs-ico { width: 34px; height: 34px; border-radius: 7px; background: rgba(255, 255, 255, .1); display: grid; place-items: center; font-size: 16px; color: #fff; transition: transform .15s ease, filter .15s ease; }
.fs-telegram  { background: #229ED9; }
.fs-phone     { background: #25D366; }
.fs-youtube   { background: #FF0000; }
.fs-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.foot-social a:hover .fs-ico { transform: translateY(-1px); filter: brightness(1.1); }

.foot-hr { border: 0; border-top: 1px solid rgba(255, 255, 255, .16); margin: 40px 0 26px; }

.foot-copy { font-size: 14px; color: #A9ADCC; line-height: 1.7; }
.foot-copy-brand { font-size: 20px; color: #fff; font-weight: 700; margin-bottom: 12px; }
.foot-copy-brand b { color: var(--cyan); }
.foot-copy p { margin-bottom: 8px; max-width: 90ch; }
.foot-disclaimer { max-width: none; font-size: 12.5px; color: #8E92B4; line-height: 1.65; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .1); }
.foot-disclaimer b { color: #A9ADCC; }

@media (max-width: 768px) {
}

/* ── auth ── */
.auth-body { background: linear-gradient(165deg, #EAEBF5, var(--paper)); min-height: 100vh; display: grid; place-items: center; padding: 30px 16px; font-family: var(--sans); }
.auth-wrap { width: 100%; max-width: 430px; }
.auth-brand { display: block; text-align: center; font-size: 24px; color: var(--ink); margin-bottom: 20px; font-weight: 700; }
.auth-brand b { color: var(--brand); }
.auth-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; }
.auth-foot { text-align: center; font-size: 14px; margin-top: 18px; }

/* ── dashboard / admin ── */
.panel-nav { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; }
.pn { display: block; padding: 11px 14px; border-radius: var(--radius-sm); color: var(--ink); font-size: 15px; transition: .15s; }
.pn i { width: 20px; color: var(--muted); }
.pn:hover, .pn.active { background: var(--tint); color: var(--brand); }
.pn.active i { color: var(--brand); }

.admin-body { background: var(--paper); }
.admin-shell { display: grid; grid-template-columns: 256px 1fr; min-height: 100vh; }
.admin-side { background: var(--indigo); padding: 22px 14px; display: flex; flex-direction: column; }
.admin-logo { display: block; color: #fff; font-size: 19px; padding: 6px 10px 22px; font-weight: 700; }
.admin-logo b { color: var(--cyan); }
.admin-side .pn { color: #C2C6DE; }
.admin-side .pn i { color: #7A80A6; }
.admin-side .pn:hover, .admin-side .pn.active { background: rgba(255, 255, 255, .08); color: #fff; }
.admin-side .pn.active i { color: #fff; }
.admin-out { margin-top: auto; padding-top: 20px; }
.admin-top { background: var(--surface); border-bottom: 1px solid var(--line); padding: 18px 28px; display: flex; justify-content: space-between; align-items: center; }
.admin-content { padding: 28px; }
@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .admin-logo { width: 100%; padding-bottom: 10px; }
  .admin-out { margin: 0; padding: 0; }
}

/* ── scroll-to-top ── */
.to-top { position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--indigo); color: #fff; font-size: 16px; display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease, background .15s ease; z-index: 1040; box-shadow: 0 8px 24px rgba(42, 37, 104, .34); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--indigo-dark); }

/* ── responsive polish ── */
@media (max-width: 992px) { .section { padding: 60px 0; } .hero { padding: 64px 0 56px; } }
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { padding: 52px 0 44px; }
  .sec-sub { margin-bottom: 30px; }
  .hero-sub { font-size: 17px; }
  .cta-band { padding: 52px 0; }
  .site-foot { padding: 46px 0 22px; }
  .site-foot .row > [class*="col-"] { margin-bottom: 8px; }
}
@media (max-width: 576px) {
  .section { padding: 40px 0; }
  .feature, .card-item, .side-card, .card-form, .hero-card { padding: 22px; }
  .hero .d-flex .btn { flex: 1 1 auto; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .btn:hover, .card-item:hover, .feature:hover, .test-row:hover { transform: none; }
}
