*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --color-primary: #1e4a7a;
  --color-primary-dark: #153660;
  --color-secondary: #2d6a4f;
  --color-accent: #e8a020;
  --color-bg: #f8f5f0;
  --color-bg-alt: #eef2f7;
  --color-text: #2c2c2c;
  --color-text-muted: #6b7280;
  --color-white: #ffffff;
  --color-border: #d1d5db;
  --font-main:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: all 0.2s ease;
  --color-bg-card: #ffffff;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 1.25rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}
.cookie-banner p {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}
.cookie-banner .btn-cookie {
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}
.cookie-banner .btn-cookie:hover {
  background: #d4911c;
}
.cookie-banner.hidden {
  display: none;
}

/* === HEADER === */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: var(--color-white);
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.3px;
}
.logo-text span {
  color: var(--color-secondary);
}
.site-nav ul {
  display: flex;
  gap: 0.25rem;
}
.site-nav a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.btn-nav-cta {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  padding: 0.5rem 1rem !important;
}
.btn-nav-cta:hover {
  background: var(--color-primary-dark) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.5rem;
  cursor: pointer;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text);
}

/* === HERO === */
.hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 50%,
    #0d2a4a 100%
  );
  color: var(--color-white);
  padding: 4.5rem 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.25rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}
.hero p {
  font-size: 1.1rem;
  line-height: 1.65;
  opacity: 0.88;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: #d4911c;
  border-color: #d4911c;
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}
.btn-green {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.btn-green:hover {
  background: #245a40;
  border-color: #245a40;
}
.hero-image {
  position: relative;
}
.hero-img-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.hero-img-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
}
.stat-label {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.125rem;
}

/* === SECTIONS === */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--color-bg-alt);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  background: rgba(30, 74, 122, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  padding: 0.25rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === CATEGORIES GRID === */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--color-primary);
}
.category-card:hover::before {
  transform: scaleX(1);
}
.cat-icon {
  width: 56px;
  height: 56px;
  background: rgba(30, 74, 122, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.cat-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
}
.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.category-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.cat-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: var(--transition);
}
.cat-link:hover {
  color: var(--color-secondary);
}
.cat-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition);
}
.cat-link:hover svg {
  transform: translateX(3px);
}

/* === BENEFITS === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.benefit-item {
  text-align: center;
  padding: 1.5rem;
}
.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-white);
}
.benefit-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.benefit-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.star-filled {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.author-city {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1e5c3a 100%);
  color: var(--color-white);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.88;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === PRODUCTS PAGE === */
.products-intro {
  padding: 3.5rem 0 1.5rem;
  text-align: center;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product-img {
  height: 200px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-img svg {
  width: 80px;
  height: 80px;
  fill: var(--color-primary);
  opacity: 0.4;
}
.product-body {
  padding: 1.5rem;
}
.product-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.product-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.product-features {
  margin-bottom: 1.25rem;
}
.product-features li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-secondary);
}
.product-category-section {
  margin-bottom: 4rem;
}
.product-category-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--color-primary);
}

/* === ABOUT PAGE === */
.about-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0;
}
.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.about-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
}
.about-content {
  padding: 4rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.about-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.value-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border-left: 4px solid var(--color-primary);
}
.value-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.375rem;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.about-image-placeholder {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}
.about-image-placeholder svg {
  width: 100px;
  height: 100px;
  fill: var(--color-primary);
  opacity: 0.25;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  text-align: center;
  padding: 2rem 1.5rem;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
}
.team-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}
.team-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* === TIPS PAGE === */
.tips-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0;
}
.tips-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.tips-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
}
.tips-content {
  padding: 4rem 0;
}
.tip-article {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-primary);
}
.tip-article h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.tip-article p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.tip-article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.625rem;
}
.tip-list li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  line-height: 1.55;
}
.tip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
}

/* === CONTACT PAGE === */
.contact-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0;
}
.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
}
.contact-content {
  padding: 4rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 74, 122, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}
.contact-detail h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.contact-detail a:hover {
  color: var(--color-primary);
}
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 74, 122, 0.1);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover {
  background: var(--color-primary-dark);
}
.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}
.cat-icon-img {
  padding: 0;
  overflow: hidden;
}
.hero-img-card {
  overflow: hidden;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* === POLICY PAGES === */
.policy-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3.5rem 0;
}
.policy-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.policy-hero p {
  font-size: 0.95rem;
  opacity: 0.75;
}
.policy-content {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 2rem 0 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-bg-alt);
}
.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 1.25rem 0 0.5rem;
}
.policy-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.policy-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}
.policy-content ul li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}
.policy-content a {
  color: var(--color-primary);
  text-decoration: underline;
}
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.policy-content th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.policy-content td {
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.policy-content tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

/* === PAGE HERO (generic) === */
.page-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3.5rem 0;
}
.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}
.breadcrumb a {
  color: inherit;
}
.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}
.breadcrumb-sep {
  opacity: 0.5;
}

/* === FOOTER === */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.footer-logo .logo-text {
  color: var(--color-white);
}
.footer-about p {
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.75;
  margin-bottom: 1rem;
}
.footer-social {
  display: flex;
  gap: 0.625rem;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}
.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--color-white);
}
.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.65;
}
.footer-col address p {
  margin-bottom: 0.25rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer-policies {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-policies a:hover {
  color: var(--color-white);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .categories-grid,
  .testimonials-grid,
  .team-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 1rem;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid,
  .testimonials-grid,
  .team-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .cta-section h2 {
    font-size: 1.75rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .hero {
    padding: 3rem 0;
  }
}
