/* Đại Nhân Decal — Landing page */
:root {
  --color-primary: #1e3a8a;
  --color-primary-hover: #1d4ed8;
  --color-primary-dark: #172554;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-text: #111827;
  --color-text-muted: #4b5563;
  --color-bg: #eff6ff;
  --color-white: #ffffff;
  --color-border: #bfdbfe;
  --font-display: "Be Vietnam Pro", system-ui, sans-serif;
  --font-body: "Be Vietnam Pro", system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(30, 58, 138, 0.08);
  --shadow-md: 0 8px 24px rgba(30, 58, 138, 0.12);
  --radius: 8px;
  --max-width: 1200px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: clip;
  min-width: 0;
}

#main-content {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  margin-top: 0;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  transition: box-shadow 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 0.75rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
  line-height: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

.footer-logo-wrap {
  display: inline-block;
  background: var(--color-white);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  line-height: 0;
}

.footer-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-primary);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.3s;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-text);
  font-weight: 500;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: calc(100% - 2rem);
  left: 1rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  background: rgba(30, 58, 138, 0.08);
}

.header-cta .btn {
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.2);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-text);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-primary-hover);
  color: var(--color-white);
}

/* Hero */
.hero,
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, var(--color-primary-hover) 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 4rem 0 5rem;
}

.page-hero {
  padding: 3rem 0;
  animation: none;
  background-size: 100% 100%;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-shapes .shape-1 {
  width: 280px;
  height: 280px;
  top: -80px;
  right: 10%;
  animation: float 9s ease-in-out infinite;
}

.hero-shapes .shape-2 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  left: 5%;
  animation: float 7s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.hero-shapes .shape-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 35%;
  background: rgba(245, 158, 11, 0.12);
  animation: float 6s ease-in-out infinite;
  animation-delay: -4s;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
  animation: gridDrift 20s linear infinite;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.25);
  color: var(--color-accent);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(245, 158, 11, 0.4);
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.stat-card span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.section-label {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
  min-width: 0;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  box-shadow: 0 14px 40px rgba(30, 58, 138, 0.14);
  transform: translateY(-8px);
  border-color: rgba(29, 78, 216, 0.35);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover .card-icon {
  transform: scale(1.08) rotate(3deg);
  background: rgba(30, 58, 138, 0.14);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(30, 58, 138, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.card-icon i,
.stat-icon i,
.info-box-icon i,
.feature-icon i,
.service-block-icon i {
  font-size: 1.35rem;
  color: var(--color-primary);
  line-height: 1;
}

.stat-icon {
  display: block;
  margin-bottom: 0.5rem;
}

.stat-icon i {
  font-size: 1.75rem;
  color: var(--color-accent);
}

.info-box-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 58, 138, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

.service-block-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-block-icon i {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.logo-icon i {
  font-size: 1.2rem;
  color: var(--color-accent);
}

.about-visual li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.about-visual li i {
  color: var(--color-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.section-header .section-label i {
  margin-right: 0.35rem;
  font-size: 0.75rem;
}

.btn i {
  font-size: 0.9em;
}

.card-link i {
  font-size: 0.75em;
  margin-left: 0.2rem;
  transition: transform 0.25s ease;
}

.card-link:hover i {
  transform: translateX(3px);
}

.site-footer li i,
.site-footer a i {
  width: 1.1rem;
  margin-right: 0.35rem;
  color: var(--color-accent);
  opacity: 0.9;
}

.product-card .card-icon {
  margin-bottom: 0.65rem;
}

.cta-phone i {
  margin-right: 0.35rem;
}

.back-to-top i {
  font-size: 1rem;
}

.header-cta .btn i {
  margin-right: 0.25rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.card p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Product cards */
.product-card .product-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* About preview */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-width: 0;
}

.two-col > * {
  min-width: 0;
}

.about-visual {
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--color-white);
}

.about-visual ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.about-visual li {
  padding: 0.5rem 0;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 50%, var(--color-primary) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: var(--color-white);
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
  animation: ctaPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.cta-phone a {
  color: var(--color-accent);
}

.cta-phone a:hover {
  color: var(--color-white);
}

/* Page header (inner pages) — base in .hero,.page-hero block above */
.page-hero {
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  opacity: 0.6;
}

.breadcrumb a {
  color: var(--color-accent);
}

/* Content blocks */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block p {
  color: var(--color-text-muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-list .feature-num {
  display: none;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Contact info */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  min-width: 0;
}

.info-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-box h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.info-box p {
  margin: 0.25rem 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.info-box a {
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-facebook:hover {
  background: #1877f2;
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
  font-size: 1.25rem;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  animation: popIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
}

/* Nav toggle animation */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -18px) scale(1.03);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gridDrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(28px, 28px);
  }
}

@keyframes ctaPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
  }
}

.hero-reveal {
  opacity: 0;
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-badge.hero-reveal {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    badgePulse 2.5s ease-in-out 1s infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.reveal-left {
  transform: translateX(-36px);
}

.reveal.reveal-right {
  transform: translateX(36px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-scale {
  transform: translateY(24px) scale(0.96);
}

.reveal-scale.is-visible {
  transform: translateY(0) scale(1);
}

.section-header.reveal .section-label {
  display: inline-block;
}

.info-box {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-hover);
}

.feature-list li {
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.feature-list li:hover {
  padding-left: 0.5rem;
  background: rgba(239, 246, 255, 0.8);
  border-radius: var(--radius);
}

.about-visual {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 58, 138, 0.2);
}

.card-link {
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease;
}

.card-link:hover {
  transform: translateX(4px);
}

.cta-phone a {
  display: inline-block;
  transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

.cta-band:hover .cta-phone a {
  transform: scale(1.03);
  letter-spacing: 0.02em;
}

body.is-loaded .site-header {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero,
  .cta-band {
    animation: none;
    background-size: 100% 100%;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 320px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  .header-cta {
    display: none;
  }

  .logo-img {
    height: 42px;
    max-width: 38vw;
  }

  .footer-logo {
    height: 32px;
    max-width: 120px;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-grid::before {
    display: none;
  }

  .hero-shapes .shape-1 {
    width: 160px;
    height: 160px;
    right: -40px;
  }

  .hero-shapes .shape-2 {
    width: 100px;
    height: 100px;
    left: -20px;
  }

  .hero-shapes .shape-3 {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .reveal.reveal-left,
  .reveal.reveal-right {
    transform: translateY(36px);
  }

  .reveal.reveal-left.is-visible,
  .reveal.reveal-right.is-visible {
    transform: translateY(0);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer li,
  .site-footer a {
    word-break: break-word;
  }

  .cta-phone {
    font-size: 1.25rem;
  }
}
