@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0f1e3d;
  --navy-mid: #16295a;
  --navy-light: #1e3a6e;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #f97316;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --navy-gradient: linear-gradient(135deg, #0f1e3d 0%, #1e3a6e 100%);
  --navy-soft: linear-gradient(135deg, #eef2f9 0%, #fdf6e8 100%);
  --bg: #ffffff;
  --bg-alt: #f4f7fc;
  --text: #0f1e3d;
  --text-muted: #5a6a85;
  --border: #dde4f0;
  --shadow: 0 4px 24px rgba(15, 30, 61, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 30, 61, 0.14);
  --shadow-amber: 0 4px 16px rgba(245, 158, 11, 0.35);
  --radius: 12px;
  --radius-sm: 8px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 56px 0;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--bg-alt);
}

.nav-cta {
  background: var(--gold-gradient);
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-amber);
}

.nav-cta:hover {
  color: var(--navy);
  opacity: 0.92;
  background: var(--gold-gradient);
  transform: translateY(-1px);
}

.header-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.3;
  text-align: right;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 30, 61, 0.94) 0%, rgba(22, 41, 90, 0.82) 55%, rgba(30, 58, 110, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 24px;
}

.hero-content h1 {
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 16px 0 28px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  min-height: 44px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--navy);
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--amber);
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.section-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.05rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.trust-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--navy-light);
}

.trust-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.trust-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--navy-light);
}

.product-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-gradient);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-badge-alt {
  background: var(--navy-gradient);
  color: #ffffff;
}

.product-body {
  padding: 24px;
}

.product-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-light);
  margin-bottom: 14px;
}

.product-body h3 {
  margin-bottom: 10px;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
  margin-bottom: 18px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  padding: 4px 0;
  color: var(--text);
}

.product-features i {
  color: var(--amber-dark);
  font-size: 0.8rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-light);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.2s, color 0.2s;
}

.product-link:hover {
  gap: 10px;
  color: var(--amber-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin: 14px 0;
  font-size: 1rem;
}

.about-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
  font-size: 1rem;
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--navy);
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.about-card:hover {
  transform: translateX(8px);
}

.about-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
}

.about-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--navy);
}

.about-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.info-main {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  border-top: 4px solid var(--amber);
}

.info-main-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.info-main-header i {
  font-size: 1.4rem;
  color: var(--amber-dark);
}

.info-main p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.info-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-soft);
  color: var(--navy-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}

.info-tag i {
  color: var(--amber-dark);
}

.info-faq {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  color: #ffffff;
}

.info-faq h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #ffffff;
}

.info-faq h4 i {
  color: var(--amber);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 4px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.faq-item summary::before {
  content: "+";
  font-weight: 700;
  color: var(--amber);
  font-size: 1.1rem;
}

.faq-item[open] summary::before {
  content: "−";
}

.faq-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 0 4px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin: 14px 0 24px;
  font-size: 1rem;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}

.contact-perk i {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
  font-size: 0.9rem;
}

.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--amber);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input {
  width: auto;
  margin-top: 3px;
  min-width: 18px;
  min-height: 18px;
  accent-color: var(--amber-dark);
}

.form-check label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer {
  background: var(--navy);
  color: #ffffff;
  margin-top: auto;
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer .logo a {
  color: #ffffff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 280px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--amber);
}

.footer-nav a,
.footer-contact p {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--amber);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-amber);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.page-hero {
  margin-top: var(--header-h);
  padding: 64px 0 48px;
  background: var(--navy-soft);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--navy-light);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--amber-dark);
}

.breadcrumb i {
  font-size: 0.7rem;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-page-text p {
  color: var(--text-muted);
  margin: 12px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--amber);
}

.value-card i {
  font-size: 1.8rem;
  color: var(--amber-dark);
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.timeline {
  position: relative;
  padding-left: 32px;
  margin: 32px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.timeline-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.timeline-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 400px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.5s ease;
}

.service-detail:hover .service-detail-img img {
  transform: scale(1.04);
}

.service-detail-text h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.service-detail-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
}

.service-list i {
  color: var(--amber-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--navy-light);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-meta i {
  color: var(--amber-dark);
}

.blog-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-page {
  margin-top: var(--header-h);
}

.article-header {
  padding: 56px 0 40px;
  background: var(--navy);
  color: #ffffff;
}

.article-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 760px;
  margin: 16px 0;
  color: #ffffff;
}

.article-header .breadcrumb {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.6);
}

.article-header .breadcrumb a {
  color: var(--amber);
}

.article-header .breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta i {
  color: var(--amber);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
}

.article-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.article-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.article-body blockquote {
  border-left: 4px solid var(--amber);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--navy-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--navy);
}

.article-body ul {
  margin: 16px 0;
  padding-left: 24px;
}

.article-body ul li {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.article-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 28px 0;
  height: 320px;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-light);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.article-nav a:hover {
  color: var(--amber-dark);
}

.article-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 36px 0;
}

.article-cta h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.thanks-page {
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-soft);
  padding: 40px 20px;
}

.thanks-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  max-width: 540px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--amber);
}

.thanks-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: 8px;
}

.thanks-card h1 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.thanks-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.thanks-card strong {
  color: var(--navy);
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--navy);
  box-shadow: var(--shadow-amber);
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .about-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

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

@media (max-width: 768px) {
  .section-pad {
    padding: 40px 0;
  }

  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo a {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .logo img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .logo a span {
    font-size: clamp(0.85rem, 3.5vw, 1.2rem);
    line-height: 1.2;
    min-width: 0;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .burger {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  .header-notice {
    display: none;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-nav {
    flex-direction: column;
  }

  .thanks-card {
    padding: 36px 24px;
  }

  .service-detail {
    padding: 18px 16px;
    gap: 20px;
  }

  .service-detail-img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .btn {
    justify-content: center;
  }
}
.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.topic-pill {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.topic-pill:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
}

.topic-pill-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}

.blog-featured-img {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-featured:hover .blog-featured-img img {
  transform: scale(1.04);
}

.blog-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.blog-featured-body h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.3;
}

.blog-featured-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.blog-featured-body .btn {
  align-self: flex-start;
}

.btn-dark {
  color: var(--navy-light);
  border-color: var(--navy-light);
}

.btn-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.blog-card-info {
  background: var(--navy-soft);
  display: flex;
  align-items: center;
}

.blog-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-amber);
}

.blog-card-info h3 {
  margin-bottom: 10px;
}

.blog-card-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-img {
    min-height: 240px;
  }

  .blog-featured-body {
    padding: 28px;
  }
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--amber);
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 32px 0 12px;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.legal-content li {
  margin-bottom: 8px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
}

.footer {
  padding: 32px 0 0;
}

.footer-inner {
  padding-bottom: 24px;
  gap: 28px;
}

.footer-desc {
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer h4 {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-nav a,
.footer-contact p {
  padding: 3px 0;
  font-size: 0.9rem;
}

.footer-disclaimer {
  padding: 16px 0;
}

.footer-disclaimer p {
  font-size: 0.85rem;
}

.footer-bottom {
  padding: 14px 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 28px 20px;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.about-grid > *,
.about-page-grid > *,
.contact-grid > *,
.products-grid > *,
.trust-grid > *,
.hero-content,
.contact-form-wrap,
.about-text,
.about-visual {
  min-width: 0;
  max-width: 100%;
}

.btn {
  max-width: 100%;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .about-grid > *,
  .contact-grid > *,
  .products-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-notice {
    word-break: break-all;
  }

  .logo a span {
    word-break: break-all;
  }

  .footer-col,
  .footer-brand,
  .footer-nav,
  .footer-contact {
    word-break: break-all;
  }

  .product-img {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
    padding: 16px;
  }

  .product-img img {
    height: 180px;
    border-radius: var(--radius-sm);
  }

  .product-badge {
    position: static;
    max-width: 100%;
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-pad {
    padding: 32px 0;
  }

  .contact-form-wrap {
    padding: 20px 16px;
  }

  .hero-content {
    padding: 32px 16px;
  }

  h1 {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .service-detail {
    padding: 14px 12px;
    gap: 16px;
  }

  .service-detail-img {
    height: 180px;
  }
}