:root {
  --navy-950: #030a13;
  --navy-900: #061426;
  --navy-850: #0a1d33;
  --navy-800: #0d2742;
  --blue-600: #087fd5;
  --blue-500: #0b9be8;
  --cyan-400: #10c7f4;
  --cyan-300: #62ddf8;
  --white: #ffffff;
  --ice-50: #f7fbff;
  --ice-100: #edf5fb;
  --slate-300: #cbd8e4;
  --slate-500: #6f8398;
  --slate-700: #31465a;
  --ink: #102336;
  --success: #2dbf83;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 30px rgba(7, 28, 50, .09);
  --shadow-lg: 0 24px 70px rgba(2, 15, 31, .24);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 1000;
  background: var(--white); color: var(--navy-900); padding: 10px 14px;
  border-radius: 8px; box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }

.topbar {
  background: var(--navy-950); color: #d8e8f7; font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--cyan-300); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,20,38,.95); color: var(--white);
  backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.09);
}
.header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 184px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 7px; }
.main-nav a {
  color: #eaf4fc; text-decoration: none; font-size: .93rem; font-weight: 650;
  padding: 9px 11px; border-radius: 9px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: rgba(16,199,244,.13); color: var(--cyan-300); }
.nav-cta { background: linear-gradient(135deg, var(--blue-600), var(--cyan-400)) !important; color: var(--white) !important; box-shadow: 0 8px 22px rgba(11,155,232,.25); }
.menu-toggle { display: none; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); border-radius: 10px; padding: 8px 11px; cursor: pointer; }

.hero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(16,199,244,.16), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(8,127,213,.25), transparent 33%),
    linear-gradient(135deg, #020812 0%, #061426 44%, #0a2847 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .24; pointer-events: none;
  background-image: linear-gradient(rgba(90,205,249,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(90,205,249,.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; min-height: 650px; padding: 78px 0 86px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase;
  letter-spacing: .12em; font-size: .77rem; font-weight: 800; color: var(--cyan-300);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--cyan-400); border-radius: 3px; }
.hero h1 { margin: 18px 0 20px; font-size: clamp(2.55rem, 5.4vw, 5.2rem); line-height: .98; letter-spacing: -.045em; max-width: 780px; }
.hero h1 span { background: linear-gradient(90deg, #fff 15%, var(--cyan-300)); -webkit-background-clip: text; color: transparent; }
.hero-copy > p { max-width: 690px; font-size: 1.15rem; color: #d6e7f6; margin: 0 0 31px; }
.action-row { display: flex; flex-wrap: wrap; gap: 13px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  text-decoration: none; border-radius: 12px; padding: 13px 19px; font-weight: 780;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--blue-600), var(--cyan-400)); box-shadow: 0 12px 28px rgba(8,127,213,.28); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); }
.btn-light { color: var(--navy-900); background: var(--white); box-shadow: var(--shadow-sm); }
.btn-outline { color: var(--blue-600); border-color: rgba(8,127,213,.28); background: rgba(255,255,255,.7); }

.hero-points { margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 11px 18px; list-style: none; color: #cbe2f4; font-size: .93rem; }
.hero-points li::before { content: "✓"; color: var(--cyan-400); font-weight: 900; margin-right: 7px; }
.hero-visual { position: relative; min-height: 470px; }
.hero-card {
  position: absolute; inset: 15px 15px 35px 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow-lg); background: #061426;
}
.hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,10,19,.68), transparent 48%); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.floating-badge {
  position: absolute; z-index: 2; background: rgba(255,255,255,.96); color: var(--navy-900);
  padding: 13px 16px; border-radius: 14px; box-shadow: var(--shadow-sm); font-weight: 750; max-width: 220px;
}
.floating-badge small { display: block; color: var(--slate-500); font-weight: 650; margin-top: 2px; }
.badge-a { left: -18px; bottom: 64px; }
.badge-b { right: -15px; top: 42px; }

.trust-strip { background: var(--white); box-shadow: 0 12px 30px rgba(2,15,31,.07); position: relative; z-index: 3; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 24px 20px; border-right: 1px solid var(--ice-100); text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy-900); font-size: 1.05rem; }
.trust-item span { color: var(--slate-500); font-size: .9rem; }

.section { padding: 92px 0; }
.section-sm { padding: 66px 0; }
.section-light { background: var(--ice-50); }
.section-dark { background: linear-gradient(140deg, var(--navy-950), var(--navy-800)); color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 { font-size: clamp(2rem, 3.8vw, 3.45rem); line-height: 1.08; letter-spacing: -.035em; margin: 12px 0 16px; color: var(--navy-900); }
.section-dark .section-heading h2 { color: var(--white); }
.section-heading p { color: var(--slate-500); font-size: 1.08rem; margin: 0; }
.section-dark .section-heading p { color: #c9dbea; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  position: relative; overflow: hidden; min-height: 248px; padding: 27px;
  border-radius: var(--radius-md); border: 1px solid #e4edf5; background: var(--white);
  box-shadow: 0 9px 26px rgba(12,45,75,.055); text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 46px rgba(8,37,67,.12); border-color: rgba(8,127,213,.35); }
.service-icon {
  display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(8,127,213,.12), rgba(16,199,244,.18)); color: var(--blue-600); font-weight: 900; letter-spacing: .02em;
}
.service-card h3 { margin: 21px 0 10px; color: var(--navy-900); font-size: 1.2rem; line-height: 1.25; }
.service-card p { margin: 0; color: var(--slate-500); font-size: .95rem; }
.service-card .more { display: inline-block; margin-top: 18px; color: var(--blue-600); font-weight: 800; font-size: .9rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; }
.media-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; background: var(--navy-900); }
.media-card img { width: 100%; aspect-ratio: 1 / .83; object-fit: cover; }
.media-card::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); border-radius: inherit; pointer-events: none; }
.check-list { list-style: none; padding: 0; margin: 25px 0 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 31px; color: var(--slate-700); }
.section-dark .check-list li { color: #d5e5f1; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--success); font-size: .75rem; font-weight: 900; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card { border-radius: var(--radius-md); padding: 30px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.12); }
.audience-card h3 { margin: 0 0 12px; font-size: 1.3rem; }
.audience-card p { color: #c7dbea; margin: 0; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.process-card { counter-increment: steps; padding: 26px; border: 1px solid #e1ebf3; border-radius: var(--radius-md); background: var(--white); }
.process-card::before { content: "0" counter(steps); display: block; color: var(--cyan-400); font-size: .85rem; font-weight: 900; letter-spacing: .12em; margin-bottom: 14px; }
.process-card h3 { margin: 0 0 8px; color: var(--navy-900); }
.process-card p { color: var(--slate-500); margin: 0; font-size: .95rem; }

.faq-list { display: grid; gap: 13px; }
details { border: 1px solid #dfebf4; background: var(--white); border-radius: 14px; padding: 0 20px; }
summary { cursor: pointer; padding: 19px 35px 19px 0; font-weight: 800; color: var(--navy-900); position: relative; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 2px; top: 16px; color: var(--blue-600); font-size: 1.35rem; }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 0 19px; color: var(--slate-500); }

.cta-band { padding: 0 0 92px; }
.cta-panel { padding: 46px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(125deg, var(--blue-600), #0b5daa 55%, var(--navy-800)); box-shadow: var(--shadow-lg); display: flex; gap: 30px; align-items: center; justify-content: space-between; }
.cta-panel h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.1; }
.cta-panel p { margin: 0; color: #d9eefb; }

.page-hero { background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); color: var(--white); padding: 70px 0 76px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(16,199,244,.18), transparent 70%); right: -110px; top: -180px; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs { font-size: .88rem; color: #b9cfdf; margin-bottom: 18px; }
.breadcrumbs a { color: var(--cyan-300); text-decoration: none; }
.page-hero h1 { font-size: clamp(2.45rem, 5vw, 4.6rem); line-height: 1.02; letter-spacing: -.042em; margin: 0 0 17px; max-width: 900px; }
.page-hero p { max-width: 790px; font-size: 1.12rem; color: #d3e4f1; margin: 0; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: start; }
.prose h2 { color: var(--navy-900); font-size: 2rem; line-height: 1.16; letter-spacing: -.025em; margin: 0 0 18px; }
.prose h3 { color: var(--navy-900); font-size: 1.25rem; margin: 32px 0 10px; }
.prose p { color: var(--slate-700); }
.prose ul { color: var(--slate-700); padding-left: 22px; }
.prose .lead { font-size: 1.14rem; color: var(--slate-700); }
.side-card { position: sticky; top: 118px; padding: 25px; border-radius: var(--radius-md); background: var(--ice-50); border: 1px solid #dfeaf3; }
.side-card h2, .side-card h3 { margin-top: 0; color: var(--navy-900); }
.side-card p { color: var(--slate-500); }
.side-card .btn { width: 100%; margin-top: 8px; }
.info-box { border-left: 4px solid var(--cyan-400); background: var(--ice-50); padding: 20px 22px; border-radius: 0 12px 12px 0; margin: 28px 0; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.contact-card { padding: 27px; border: 1px solid #e0ebf4; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-card h3 { margin: 0 0 7px; color: var(--navy-900); }
.contact-card p, .contact-card address { margin: 0; color: var(--slate-500); font-style: normal; }
.contact-card a { color: var(--blue-600); font-weight: 750; text-decoration: none; }

.site-footer { background: var(--navy-950); color: #c9dbea; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .8fr 1fr; gap: 36px; }
.footer-brand img { width: 180px; margin-bottom: 17px; }
.footer-brand p { color: #a9c0d2; max-width: 380px; }
.site-footer h3 { color: var(--white); font-size: 1rem; margin: 0 0 15px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { color: #bfd2e1; text-decoration: none; }
.footer-links a:hover { color: var(--cyan-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); margin-top: 42px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: #8da9bd; font-size: .87rem; }

.notice { padding: 14px 16px; border-radius: 12px; background: #fff7df; color: #6e5718; border: 1px solid #f1dda0; }
.code-like { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .9em; }

@media (max-width: 1050px) {
  .main-nav { position: fixed; inset: 119px 20px auto; display: none; flex-direction: column; align-items: stretch; background: var(--navy-900); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; padding: 15px; box-shadow: var(--shadow-lg); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .menu-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { padding: 8px 0; align-items: flex-start; }
  .topbar-links { gap: 7px 14px; }
  .topbar .hide-mobile { display: none; }
  .header-inner { min-height: 70px; }
  .brand img { width: 154px; }
  .main-nav { top: 111px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 64px 0 68px; }
  .hero-visual { min-height: 370px; }
  .hero-card { inset: 0 0 20px; }
  .badge-b { right: -3px; top: 25px; }
  .badge-a { left: -3px; bottom: 38px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--ice-100); }
  .section { padding: 72px 0; }
  .split, .content-grid { grid-template-columns: 1fr; gap: 36px; }
  .side-card { position: static; }
  .audience-grid, .contact-grid { grid-template-columns: 1fr; }
  .cta-panel { flex-direction: column; align-items: flex-start; padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 2.65rem; }
  .hero-copy > p { font-size: 1.02rem; }
  .hero-visual { min-height: 310px; }
  .floating-badge { padding: 10px 12px; font-size: .84rem; max-width: 180px; }
  .service-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 18px 11px; }
  .section-heading h2 { font-size: 2.15rem; }
  .page-hero { padding: 56px 0 62px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* Visual refresh v2: full images with soft fades instead of hard crops */
.hero-visual {
  min-height: 520px;
  isolation: isolate;
}
.hero-art {
  position: absolute;
  inset: -4% -8% -6% -2%;
  background: url("../img/hero-hardware.webp") 58% 50% / contain no-repeat;
  filter: drop-shadow(0 28px 42px rgba(0, 8, 20, .46));
  -webkit-mask-image: radial-gradient(ellipse 79% 76% at 58% 50%, #000 50%, rgba(0,0,0,.92) 66%, transparent 100%);
  mask-image: radial-gradient(ellipse 79% 76% at 58% 50%, #000 50%, rgba(0,0,0,.92) 66%, transparent 100%);
  z-index: 0;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 2% -2% 0 12%;
  border-radius: 45%;
  background: radial-gradient(ellipse at center, rgba(16,199,244,.16), rgba(8,127,213,.06) 45%, transparent 72%);
  filter: blur(18px);
  z-index: -1;
}
.hero .floating-badge { z-index: 3; }

.earth-section {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 42%, rgba(8,127,213,.24), transparent 35%),
    linear-gradient(115deg, var(--navy-950) 0%, #061426 47%, #0a2743 100%);
}
.earth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,10,19,.99) 0%, rgba(3,10,19,.96) 37%, rgba(3,10,19,.44) 62%, rgba(3,10,19,.10) 100%),
    linear-gradient(0deg, rgba(3,10,19,.78) 0%, transparent 25%, transparent 78%, rgba(3,10,19,.45) 100%);
  z-index: 1;
}
.earth-section .container { position: relative; z-index: 2; }
.earth-split { grid-template-columns: .88fr 1.12fr; min-height: 520px; }
.earth-copy { position: relative; z-index: 3; }
.earth-art {
  position: absolute;
  right: max(-70px, calc((100vw - var(--container)) / -2));
  top: 50%;
  width: min(760px, 57vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url("../img/digitworld-earth.webp") center / contain no-repeat;
  filter: drop-shadow(0 34px 62px rgba(0, 5, 18, .52));
  -webkit-mask-image: radial-gradient(circle at 55% 48%, #000 55%, rgba(0,0,0,.94) 72%, transparent 100%);
  mask-image: radial-gradient(circle at 55% 48%, #000 55%, rgba(0,0,0,.94) 72%, transparent 100%);
}

@media (max-width: 1050px) {
  .hero-art { inset: 2% -11% 0 -7%; }
  .earth-art { width: min(690px, 62vw); right: -120px; }
}

@media (max-width: 780px) {
  .hero-visual { min-height: 430px; margin-top: -18px; }
  .hero-art {
    inset: -3% -7% -3% -7%;
    background-position: center;
    -webkit-mask-image: radial-gradient(ellipse 82% 76% at 50% 48%, #000 47%, rgba(0,0,0,.9) 67%, transparent 100%);
    mask-image: radial-gradient(ellipse 82% 76% at 50% 48%, #000 47%, rgba(0,0,0,.9) 67%, transparent 100%);
  }
  .earth-section { min-height: 860px; align-items: flex-start; padding-bottom: 0; }
  .earth-section::before {
    background:
      linear-gradient(180deg, rgba(3,10,19,.99) 0%, rgba(3,10,19,.95) 47%, rgba(3,10,19,.34) 68%, rgba(3,10,19,.72) 100%);
  }
  .earth-split { grid-template-columns: 1fr; min-height: 760px; align-items: start; }
  .earth-copy { max-width: 680px; }
  .earth-art {
    width: min(720px, 116vw);
    right: 50%;
    top: auto;
    bottom: -17%;
    transform: translateX(50%);
    -webkit-mask-image: radial-gradient(circle at 50% 44%, #000 54%, rgba(0,0,0,.9) 72%, transparent 100%);
    mask-image: radial-gradient(circle at 50% 44%, #000 54%, rgba(0,0,0,.9) 72%, transparent 100%);
  }
}

@media (max-width: 520px) {
  .hero-visual { min-height: 350px; }
  .hero-art { inset: -2% -12% 0 -12%; }
  .earth-section { min-height: 790px; }
  .earth-split { min-height: 700px; }
  .earth-art { width: 126vw; bottom: -10%; }
}

/* Visual refresh v3: transparent horizontal logo, no hard rectangular crop */
.brand {
  position: relative;
  padding: 7px 0;
  isolation: isolate;
}
.brand::before {
  content: "";
  position: absolute;
  inset: 8% -5%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(16,199,244,.12), rgba(8,127,213,.045) 48%, transparent 74%);
  filter: blur(11px);
}
.brand img {
  width: 232px;
  max-height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(0,7,20,.44));
}
.footer-brand img {
  width: 275px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 16px rgba(0,7,20,.38));
}

@media (max-width: 1120px) {
  .brand img { width: 205px; }
}

@media (max-width: 780px) {
  .brand { padding: 5px 0; }
  .brand img { width: 190px; max-height: 54px; }
}

@media (max-width: 390px) {
  .brand img { width: 172px; }
}


/* Visual refresh v4: stronger readability over the Earth background */
.earth-section .check-list {
  gap: 10px;
  max-width: 620px;
}
.earth-section .check-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 16px 11px 47px;
  color: #f2f8fc;
  font-weight: 650;
  line-height: 1.35;
  background: linear-gradient(90deg, rgba(2, 12, 24, .86), rgba(4, 25, 44, .56));
  border: 1px solid rgba(124, 207, 247, .20);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 5, 15, .18);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.earth-section .check-list li::before {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 520px) {
  .earth-section .check-list li {
    padding: 10px 12px 10px 43px;
    font-size: .96rem;
  }
  .earth-section .check-list li::before { left: 11px; }
}


/* Orari del negozio */
.hours-panel {
  max-width: 980px;
  margin: 0 auto;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr;
  gap: 18px;
}
.hours-card {
  padding: 26px;
  border: 1px solid rgba(8, 127, 213, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(6, 20, 38, 0.08);
}
.hours-card h3 {
  margin: 0 0 10px;
  color: #061426;
}
.hours-card p {
  margin: 0;
  color: #27384a;
  font-size: 1.08rem;
  line-height: 1.7;
}
.hours-card span {
  color: #627082;
  font-size: 0.95rem;
}
.hours-note {
  margin-top: 18px;
  padding: 18px 22px;
  border-left: 4px solid #087fd5;
  border-radius: 12px;
  background: #eaf6fd;
  color: #183149;
  line-height: 1.65;
}
.hours-note strong {
  color: #061426;
}
.hours-note a {
  display: inline-block;
  margin-left: 6px;
  font-weight: 700;
}
.contact-hours {
  margin-top: 34px;
}
.hours-list {
  margin: 18px 0 22px;
}
.hours-list > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1.5fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(6, 20, 38, 0.12);
}
.hours-list dt {
  font-weight: 800;
  color: #061426;
}
.hours-list dd {
  margin: 0;
}
.site-footer .footer-links strong {
  color: #ffffff;
}

@media (max-width: 820px) {
  .hours-grid {
    grid-template-columns: 1fr;
  }
  .hours-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .hours-note a {
    display: block;
    margin: 8px 0 0;
  }
}
