/* ============ SANTO Machinery — Global Styles ============ */
:root {
  --blue: #2b4a69;
  --blue-dark: #1c3d5f;
  --blue-deep: #102b45;
  --blue-soft: #3e5977;
  --blue-mist: #f3f6f8;
  --yellow: #ffdd00;
  --yellow-deep: #f5c400;
  --ink: #333333;
  --ink-soft: #666666;
  --ink-mute: #888888;
  --line: #e4e8ec;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(16, 43, 69, .08);
  --shadow-md: 0 10px 30px rgba(16, 43, 69, .12);
  --shadow-lg: 0 22px 60px rgba(16, 43, 69, .18);
  --radius: 14px;
  --wrap: 1200px;
  --font: "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .25s; }
a:hover { color: var(--blue-soft); }
ul, ol { padding-left: 1.25em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ============ Top bar ============ */
.topbar { background: var(--blue-deep); color: #cfd9e2; font-size: 13px; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #e8eef4; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--yellow); }
.topbar svg { width: 14px; height: 14px; fill: var(--yellow); }
.topbar .tagline { letter-spacing: .4px; text-transform: uppercase; opacity: .85; }
/* ============ Language switcher (desktop inline / mobile dropdown) ============ */
.lang-switch { position: relative; display: inline-flex; align-items: center; }
.lang-switch > .ls-toggle {
  display: none; align-items: center; gap: 5px; cursor: pointer;
  color: #e8eef4; background: transparent; border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px; padding: 4px 9px; font: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: .5px; line-height: 1.4;
}
.lang-switch > .ls-toggle::-moz-focus-inner { border: 0; }
.lang-switch .ls-caret { font-size: 9px; opacity: .85; transform: translateY(1px); }
.lang-switch > .ls-list { display: inline-flex; align-items: center; }
.lang-switch > .ls-list a {
  color: #e8eef4; padding: 4px 7px; border-radius: 6px; font-weight: 600;
  letter-spacing: .5px; white-space: nowrap;
}
.lang-switch > .ls-list a:hover { color: var(--yellow); background: rgba(255,255,255,.10); }
.lang-switch > .ls-list a.active { color: var(--yellow); }
.lang-switch > .ls-list a.active:hover { background: transparent; }
/* Desktop: pills inline, hide the toggle */
@media (min-width: 721px) {
  .lang-switch > .ls-toggle { display: none !important; }
  .lang-switch > .ls-list { display: inline-flex !important; }
}
/* Mobile: centered dropdown tray — anchored to the topbar (not the toggle),
   so it can never spill past either edge; 6 languages in a tidy 3x2 grid */
@media (max-width: 720px) {
  .topbar .wrap { justify-content: center; position: relative; }
  .topbar .tagline { display: none; }
  .lang-switch { position: static; }
  .lang-switch > .ls-toggle { display: inline-flex; }
  .lang-switch > .ls-list {
    display: none; position: absolute; left: 50%; transform: translateX(-50%);
    top: calc(100% + 4px); width: calc(100% - 24px); max-width: 340px;
    grid-template-columns: repeat(3, 1fr); gap: 3px;
    background: var(--blue-deep); border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px; padding: 7px; box-shadow: var(--shadow-md); z-index: 950;
  }
  .lang-switch.open > .ls-list,
  .lang-switch:focus-within > .ls-list { display: grid; }
  .lang-switch > .ls-list a { padding: 10px 8px; text-align: center; }
}

/* ============ Header / Nav ============ */
.header { position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(16,43,69,.06); transition: box-shadow .3s; }
.header.scrolled { box-shadow: 0 10px 30px rgba(16,43,69,.14); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px;  }
.logo img { height: 52px; width: auto; }
.nav > ul { display: flex; list-style: none; gap: 4px; flex-wrap: wrap; }
.nav li { position: relative; }
.nav > ul > li > a {
  display: block; padding: 26px 10px; font-weight: 600; font-size: 14px; color: var(--blue-dark);
  position: relative; letter-spacing: .2px;
}
.nav > ul > li > a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 18px; height: 3px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav > ul > li:hover > a::after, .nav > ul > li.current > a::after { transform: scaleX(1); }
.nav > ul > li.current > a { color: var(--blue-deep); }
.has-drop > a::before { content: ""; display: inline-block; margin-left: 6px; border: 4px solid transparent; border-top-color: currentColor; transform: translateY(3px); }
.drop {
  position: absolute; top: 100%; left: 0; min-width: 264px; background: var(--white);
  border-radius: 10px; box-shadow: var(--shadow-lg); padding: 10px 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .28s ease;
  border-top: 3px solid var(--yellow); max-height: 70vh; overflow-y: auto;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 9px 22px; color: var(--ink); font-size: 13.5px; }
.drop a:hover { background: var(--blue-mist); color: var(--blue-dark); padding-left: 26px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--blue-dark); margin: 5px 0; border-radius: 2px; transition: .3s; }
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 76px 0 auto 0; background: var(--white); box-shadow: var(--shadow-lg); max-height: 0; overflow: hidden auto; transition: max-height .35s; }
  .nav.open { max-height: 78vh; }
  .nav > ul { flex-direction: column; padding: 8px 0 20px; }
  .nav > ul > li > a { padding: 12px 24px; }
  .nav > ul > li > a::after { display: none; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: 0; padding-left: 18px; display: none; }
  .has-drop.open .drop { display: block; }
  .has-drop > a::before { float: right; transition: transform .3s; }
  .has-drop.open > a::before { transform: rotate(180deg) translateY(-3px); }
}

/* ============ Hero ============ */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; color: var(--white); overflow: hidden; background: var(--blue-deep); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translateX(0); } to { transform: scale(1.12) translateX(-2%); } }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(16,43,69,.92) 8%, rgba(28,61,95,.72) 45%, rgba(43,74,105,.35) 100%); }
.hero .wrap { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 90px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,221,0,.14); border: 1px solid rgba(255,221,0,.55); color: var(--yellow); padding: 7px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 26px; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.12; font-weight: 800; max-width: 98%px; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero p.lead { font-size: clamp(16px, 2vw, 19px); color: #d9e2ea; max-width: 98%; margin-bottom: 34px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 100px; font-weight: 700; font-size: 15.5px; transition: all .3s; border: 2px solid transparent; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-primary { background: var(--yellow); color: var(--blue-deep); }
.btn-primary:hover { background: #ffe84d; color: var(--blue-deep); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(255,221,0,.35); }
.btn-ghost { border-color: rgba(255,255,255,.65); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--white); transform: translateY(-3px); }

/* ============ Sections ============ */
.section { padding: 84px 0; }
.section.alt { background: var(--blue-mist); }
.section-head { max-width: 780px; margin: 0 auto 50px; text-align: center; }
.section-head .kicker, .kicker { display: inline-block; color: var(--blue-soft); background: rgba(43,74,105,.08); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 12.5px; padding: 6px 14px; border-radius: 100px; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(27px, 3.4vw, 40px); color: var(--blue-dark); line-height: 1.22; margin-bottom: 14px; }
.section-head h2 em { font-style: normal; border-bottom: 4px solid var(--yellow); }
.section-head p { color: var(--ink-soft); font-size: 16.5px; }

/* cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .35s; border: 1px solid var(--line); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .pic { aspect-ratio: 4 / 3; overflow: hidden; background: var(--blue-mist); }
.card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .pic img { transform: scale(1.08); }
.card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { font-size: 18.5px; color: var(--blue-dark); line-height: 1.35; }
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--blue-soft); }
.card p { color: var(--ink-soft); font-size: 14.8px; flex: 1; }
.card .more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--blue); margin-top: 4px; }
.card .more::after { content: "→"; transition: transform .3s; }
.card:hover .more::after { transform: translateX(5px); }

/* feature blocks */
.feature { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: all .3s; }
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature .fico { flex: 0 0 54px; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--blue-soft)); display: flex; align-items: center; justify-content: center; }
.feature .fico svg { width: 26px; height: 26px; fill: var(--yellow); }
.feature h3 { font-size: 17.5px; color: var(--blue-dark); margin-bottom: 6px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); }

/* stats */
.stats { background: linear-gradient(115deg, var(--blue-deep), var(--blue) 60%, var(--blue-soft)); color: var(--white); padding: 64px 0; }
.stats .grid-4 { gap: 30px; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(34px, 4vw, 48px); font-weight: 800; color: var(--yellow); line-height: 1.1; }
.stat b i { font-style: normal; font-size: .6em; }
.stat span { display: block; margin-top: 8px; color: #d5dee7; font-size: 15px; letter-spacing: .5px; }

/* split layout */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; align-items: center; }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; } }
.split .pic-frame { position: relative; }
.split .pic-frame img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split .pic-frame::before { content: ""; position: absolute; inset: 26px -26px -26px 26px; border: 3px solid var(--yellow); border-radius: var(--radius); z-index: -1; }
.checklist { list-style: none; padding: 0; display: grid; gap: 12px; margin: 22px 0 30px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 15.5px; }
.checklist li svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 4px; fill: var(--blue); background: rgba(43,74,105,.1); border-radius: 50%; padding: 3px; }

/* ============ Article / page body ============ */
.page-hero { background: linear-gradient(115deg, var(--blue-deep) 0%, var(--blue) 70%, var(--blue-soft)); color: var(--white); padding: 66px 0 0; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -140px; top: -140px; width: 420px; height: 420px; border-radius: 50%; border: 60px solid rgba(255,221,0,.12); }
.page-hero .wrap { position: relative; z-index: 2; }
.crumbs { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13.5px; color: #b9c7d4; margin-bottom: 16px; }
.crumbs a { color: #dbe5ee; }
.crumbs a:hover { color: var(--yellow); }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.2; max-width: 860px; margin-bottom: 18px; }
.page-hero .sub { color: #cfdae4; max-width: 780px; font-size: 16.5px; margin-bottom: 34px; }
.page-hero .hero-strip { display: flex; gap: 14px; flex-wrap: wrap; padding-bottom: 40px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: var(--white); font-size: 13.5px; padding: 8px 16px; border-radius: 100px; }
.chip svg { width: 15px; height: 15px; fill: var(--yellow); }
.chip a { color: var(--white); font-weight: 700; }
.chip a:hover { color: var(--yellow); }

.article { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 44px; align-items: start; padding: 60px 0 30px; }
@media (max-width: 1024px) { .article { grid-template-columns: 1fr; } }
.article-main { background: var(--white); min-width:0}
.article-main .lead-img { border-radius: var(--radius); box-shadow: var(--shadow-md); margin: 0 0 30px; }
.article-main h2 { font-size: clamp(22px, 2.6vw, 30px); color: var(--blue-dark); margin: 42px 0 16px; line-height: 1.3; position: relative; padding-left: 18px; }
.article-main h2::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 5px; border-radius: 4px; background: var(--yellow); }
.article-main h2 > a, .article-main h3 > a { color: inherit; font-weight: inherit; text-decoration: none; border-bottom: 2px solid transparent; transition: border-color .25s, color .25s; }
.article-main h2 > a:hover, .article-main h3 > a:hover { color: var(--blue); border-bottom-color: var(--yellow); text-decoration: none; }
.article-main h3 { font-size: 20px; color: var(--blue-dark); margin: 30px 0 12px; }
.article-main p { margin-bottom: 16px; color: var(--ink-soft); font-size: 16px; }
.article-main p strong { color: var(--ink); }
.article-main ul, .article-main ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink-soft); display: grid; gap: 8px; }
.article-main ul li::marker { color: var(--yellow-deep); }
.article-main figure { margin: 26px 0; }
.article-main figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.article-main figcaption { text-align: center; color: var(--ink-mute); font-size: 13.5px; margin-top: 10px; }
.article-main a { font-weight: 600; }
.article-main a:hover { text-decoration: underline; }
.article-main blockquote { border-left: 4px solid var(--yellow); background: var(--blue-mist); padding: 18px 22px; border-radius: 0 10px 10px 0; margin: 24px 0; color: var(--ink); font-size: 16px; }

/* spec table */
.spec-table { width: 100%; border-collapse: collapse; margin: 22px 0 30px; box-shadow: var(--shadow-sm); border-radius: var(--radius); overflow: hidden; font-size: 15px; }
.spec-table th { background: var(--blue); color: var(--white); text-align: left; padding: 13px 18px; font-weight: 700; }
.spec-table td { padding: 12px 18px; border-bottom: 1px solid var(--line); color: var(--ink); }
.spec-table tr:nth-child(even) td { background: var(--blue-mist); }
.spec-table tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; }

/* sidebar */
.side { display: grid; gap: 24px; position: sticky; top: 100px; }
@media (max-width: 1024px) { .side { position: static; } }
.side-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.side-box h3 { font-size: 17px; color: var(--blue-dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); display: inline-block; }
.side-box ul { list-style: none; padding: 0; display: grid; gap: 4px; }
.side-box ul a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--ink); font-size: 14.5px; }
.side-box ul a:hover { background: var(--blue-mist); color: var(--blue-dark); padding-left: 18px; }
.contact-mini { background: linear-gradient(150deg, var(--blue-deep), var(--blue)); color: var(--white); border: 0; }
.contact-mini h3 { color: var(--white); border-color: var(--yellow); }
.contact-mini p { color: #cdd8e2; font-size: 14px; margin-bottom: 16px; }
.contact-mini a.wa, .contact-mini a.em { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); color: var(--white); padding: 12px 16px; border-radius: 12px; margin-bottom: 10px; font-weight: 600; font-size: 14.5px; transition: .3s; }
.contact-mini a.wa:hover, .contact-mini a.em:hover { background: rgba(255,221,0,.16); border-color: rgba(255,221,0,.5); color: var(--white); }
.contact-mini svg { width: 20px; height: 20px; fill: var(--yellow); flex: 0 0 20px; }

/* FAQ */
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: var(--white); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 17px 22px; font-weight: 700; color: var(--blue-dark); font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--yellow-deep); transition: transform .3s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 18px; color: var(--ink-soft); font-size: 15.2px; }

/* CTA band */
.cta-band { background: linear-gradient(115deg, var(--blue-deep), var(--blue) 65%, var(--blue-soft)); color: var(--white); padding: 68px 0; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; border: 46px solid rgba(255,221,0,.09); }
.cta-band::before { width: 320px; height: 320px; left: -120px; bottom: -160px; }
.cta-band::after { width: 220px; height: 220px; right: -60px; top: -110px; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-band h2 em { font-style: normal; color: var(--yellow); }
.cta-band p { color: #cfdae4; max-width: 640px; }

/* ============ Floating contact (right) ============ */
.floaters { position: fixed; right: 18px; top: 46%; z-index: 950; display: flex; flex-direction: column; gap: 14px; }
.floater { position: relative; width: 56px; height: 56px; }
.floater .fab { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(16,43,69,.3); transition: transform .3s, box-shadow .3s; position: relative; z-index: 2; }
.floater:hover .fab { transform: scale(1.08); }
.floater .fab svg { width: 28px; height: 28px; fill: #fff; }
.floater.wa .fab { background: #25d366; }
.floater.em .fab { background: var(--blue); }
.floater .fab::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid currentColor; color: inherit; opacity: 0; animation: pulse 2.4s ease-out infinite; }
.floater.wa .fab::after { color: #25d366; }
.floater.em .fab::after { color: var(--blue); animation-delay: 1.2s; }
@keyframes pulse { 0% { opacity: .8; transform: scale(1); } 70% { opacity: 0; transform: scale(1.35); } 100% { opacity: 0; } }
.floater .pop {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%) translateX(14px);
  background: var(--white); color: var(--ink); border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 12px 16px; white-space: nowrap; font-size: 14px; font-weight: 600;
  opacity: 0; visibility: hidden; transition: all .3s ease; border-left: 4px solid var(--yellow);
}
.floater:hover .pop { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
.floater.wa .pop b { color: #128c4a; }
.floater.em .pop b { color: var(--blue); }
.floater .pop small { display: block; font-weight: 400; color: var(--ink-mute); font-size: 12.5px; margin-top: 2px; }
@media (max-width: 640px) { .floaters { right: 10px; } .floater { width: 48px; height: 48px; } .floater .fab { width: 48px; height: 48px; } .floater .fab svg { width: 24px; height: 24px; } .floater .pop { display: none; } }

/* back to top */
.totop { position: fixed; right: 18px; bottom: 26px; z-index: 940; width: 46px; height: 46px; border-radius: 12px; border: 0; background: var(--blue); color: var(--white); cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(16px); transition: all .3s; }
.totop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--blue-dark); }
.totop svg { width: 20px; height: 20px; fill: currentColor; }

/* ============ Footer ============ */
.footer { background: var(--blue-deep); color: #b6c4d1; margin-top: 0; }
.footer a { color: #cdd9e4; }
.footer a:hover { color: var(--yellow); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 44px; }
@media (max-width: 960px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer h4 { color: var(--white); font-size: 17px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--yellow); border-radius: 2px; }
.footer .fabout img { height: 48px; margin-bottom: 16px; background: #fff; border-radius: 8px; padding: 6px 10px; }
.footer .fabout p { font-size: 14.5px; line-height: 1.8; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; font-size: 14.5px; }
.footer .fcontact li { display: flex; gap: 12px; align-items: flex-start; }
.footer .fcontact svg { width: 17px; height: 17px; fill: var(--yellow); flex: 0 0 17px; margin-top: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: 13.5px; }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============ Animations ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; } .reveal.d2 { transition-delay: .24s; } .reveal.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-bg img { animation: none; } }
