/*
Theme Name: DSS Pack
Theme URI: https://dsspack.com
Description: B2B flexible packaging manufacturer website. Custom theme for DSS Pack global website.
Version: 1.3.2
Author: DSS Pack Web Team
Author URI: https://dsspack.com
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: dss-pack
Tags: manufacturing, B2B, packaging, responsive-layout, accessibility-ready
*/

/* ========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ======================================== */
:root {
  --color-primary: #2D5016;
  --color-primary-hover: #3a6b1e;
  --color-primary-light: #4a7c28;
  --color-secondary: #8B5E3C;
  --color-secondary-light: #a67c52;
  --color-bg: #FAFAF7;
  --color-bg-white: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #16A34A;
  --color-error: #DC2626;
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --section-padding-y: 4rem;
  --container-max: 1280px;
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

/* ========================================
   BASE RESET & TYPOGRAPHY
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--color-text); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-hover); }

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

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; }

/* WordPress alignment classes */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
  width: 100%; max-width: var(--container-max);
  margin: 0 auto; padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section { padding: var(--section-padding-y) 0; }
.section--alt { background-color: var(--color-bg-white); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--color-text-muted); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }

/* ========================================
   COMPONENTS: NAVIGATION
   ======================================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background-color: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-normal);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; min-height: 72px; }
.navbar__logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; color: var(--color-primary); text-decoration: none; }
.navbar__logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.125rem; }
.navbar__menu { display: none; list-style: none; gap: 0.25rem; padding: 0; margin: 0; }
@media (min-width: 1024px) { .navbar__menu { display: flex; } }
.navbar__menu-item { position: relative; }
.navbar__link { display: block; padding: 0.5rem 0.75rem; color: var(--color-text); font-size: 0.9375rem; font-weight: 500; border-radius: var(--radius-md); transition: all var(--transition-fast); text-decoration: none; }
.navbar__link:hover, .navbar__link.active { color: var(--color-primary); background-color: rgba(45,80,22,0.06); }

/* Dropdown — Desktop */
.navbar__menu-item { position: relative; }
.navbar__link { display: block; padding: 0.5rem 0.75rem; color: var(--color-text); font-size: 0.9375rem; font-weight: 500; border-radius: var(--radius-md); transition: all var(--transition-fast); text-decoration: none; }
.navbar__link:hover, .navbar__link.active { color: var(--color-primary); background-color: rgba(45,80,22,0.06); }

/* WordPress submenu / dropdown support */
.navbar__menu .sub-menu,
.navbar__dropdown { position: absolute; top: 100%; left: 0; background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: 0 10px 40px rgba(0,0,0,0.12); min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition-normal); padding: 0.5rem 0; list-style: none; z-index: 100; margin: 0; }
.navbar__menu-item:hover > .sub-menu,
.navbar__menu-item:hover > .navbar__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.navbar__menu .sub-menu li a,
.navbar__dropdown a { display: block; padding: 0.5rem 1rem; color: var(--color-text); font-size: 0.9rem; text-decoration: none; transition: all var(--transition-fast); border-radius: var(--radius-sm); white-space: nowrap; }
.navbar__menu .sub-menu li a:hover,
.navbar__dropdown a:hover { background-color: rgba(45,80,22,0.06); color: var(--color-primary); }

.navbar__cta { display: inline-flex; align-items: center; padding: 0.625rem 1.25rem; background-color: var(--color-primary); color: white !important; font-weight: 600; font-size: 0.9375rem; border-radius: var(--radius-full); text-decoration: none; transition: all var(--transition-fast); }
.navbar__cta:hover { background-color: var(--color-primary-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(45,80,22,0.3); color: white; }

/* Mobile menu */
.navbar__toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
@media (min-width: 1024px) { .navbar__toggle { display: none; } }
.navbar__toggle span { display: block; width: 24px; height: 2px; background-color: var(--color-text); transition: all var(--transition-fast); border-radius: 2px; }

.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: white; z-index: 999; overflow-y: auto; padding: 1.5rem; }
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 0.875rem 0; font-size: 1rem; font-weight: 500; color: var(--color-text); text-decoration: none; border-bottom: 1px solid var(--color-border); }
.mobile-menu__cta { margin-top: 1.5rem; }

/* ========================================
   COMPONENTS: BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; font-size: 0.9375rem; font-weight: 600;
  font-family: var(--font-body); border-radius: var(--radius-full);
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition-fast); text-decoration: none; line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.btn--primary { background-color: var(--color-primary); color: white; border-color: var(--color-primary); }
.btn--primary:hover { background-color: var(--color-primary-hover); border-color: var(--color-primary-hover); color: white; }
.btn--secondary { background-color: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--secondary:hover { background-color: var(--color-primary); color: white; }
.btn--white { background-color: white; color: var(--color-primary); border-color: white; }
.btn--white:hover { background-color: var(--color-bg); color: var(--color-primary); }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* ========================================
   COMPONENTS: HERO
   ======================================== */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  overflow: hidden; background: linear-gradient(135deg, #1a3320 0%, #2D5016 50%, #3d6b20 100%);
  color: white;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero__content { position: relative; z-index: 1; max-width: 720px; padding: 2rem 0; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; backdrop-filter: blur(4px); }
.hero__title { font-size: clamp(2.25rem, 5.5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -0.02em; color: white; }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.7; opacity: 0.92; margin-bottom: 2rem; max-width: 600px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 1024px) { .hero { min-height: auto; padding: 5rem 0; } }

.page-hero { background: linear-gradient(135deg, #1a3320 0%, #2D5016 100%); color: white; padding: 4rem 0 3rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20L0 0h40z'/%3E%3C/g%3E%3C/svg%3E"); }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { color: white; font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero__desc { font-size: 1.125rem; opacity: 0.88; max-width: 650px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-size: 0.875rem; opacity: 0.7; margin-top: 1rem; list-style: none; padding: 0; }
.breadcrumb a { color: white; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }

/* ========================================
   COMPONENTS: TRUST BAR
   ======================================== */
.trust-bar { background: white; border-bottom: 1px solid var(--color-border); padding: 1.25rem 0; }
.trust-bar__list { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.trust-bar__item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--color-text-muted); }
.trust-bar__icon { width: 32px; height: 32px; background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-primary); font-size: 14px; }

/* ========================================
   COMPONENTS: CARDS
   ======================================== */
.card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.5rem; transition: all var(--transition-normal); cursor: default; height: 100%; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-color: transparent; }
.card__icon { width: 56px; height: 56px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: var(--color-primary); font-size: 1.5rem; margin-bottom: 1rem; flex-shrink: 0; }
.card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-text); }
.card__text { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.65; flex-grow: 1; }
.card__link { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1rem; font-weight: 600; font-size: 0.9rem; color: var(--color-primary); text-decoration: none; transition: gap var(--transition-fast); }
.card__link:hover { gap: 0.625rem; }

.card--product { overflow: hidden; padding: 0; }
.card--product .card__image { aspect-ratio: 4/3; background: linear-gradient(135deg, #f0fdf4, #ecfccb); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: var(--color-primary); opacity: 0.7; border-bottom: 1px solid var(--color-border); }
.card--product .card__body { padding: 1.5rem; }

.feature-card { text-align: center; padding: 2rem 1.5rem; }
.feature-card__number { font-size: 2.5rem; font-weight: 800; color: var(--color-primary); opacity: 0.15; line-height: 1; margin-bottom: 0.5rem; }
.feature-card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card__text { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }

/* Industry cards (used on homepage) */
.card--industry { position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 200px; display: flex; align-items: flex-end; padding: 0; background-color: var(--color-bg-white); }
.card--industry .card__bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, #f0fdf4, #ecfccb); opacity: 0.5; }
.card--industry .card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,51,32,0.85) 0%, transparent 60%); }
.card--industry .card__info { position: relative; z-index: 1; padding: 1.25rem; width: 100%; color: white; }
.card--industry h3 { color: white; font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.card--industry p { color: rgba(255,255,255,0.85); font-size: 0.875rem; }

/* ========================================
   COMPONENTS: SPEC TABLE
   ======================================== */
.spec-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.spec-table th, .spec-table td { padding: 0.875rem 1.25rem; text-align: left; border-bottom: 1px solid var(--color-border); font-size: 0.9375rem; }
.spec-table th { background: #f8faf7; font-weight: 700; color: var(--color-text); width: 30%; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: rgba(45,80,22,0.02); }

/* ========================================
   COMPONENTS: FORMS
   ======================================== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.375rem; color: var(--color-text); }
.form-label.required::after { content: ' *'; color: var(--color-error); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.75rem 1rem; font-size: 0.9375rem; font-family: var(--font-body); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: white; color: var(--color-text); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(45,80,22,0.12); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ========================================
   COMPONENTS: FOOTER
   ======================================== */
.footer { background: #111827; color: #d1d5db; padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; opacity: 0.78; margin-top: 1rem; }
.footer__heading { font-size: 0.8125rem; font-weight: 700; color: white; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 0.625rem; }
.footer__links a { color: #d1d5db; font-size: 0.9rem; text-decoration: none; transition: color var(--transition-fast); }
.footer__links a:hover { color: white; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9rem; margin-bottom: 0.875rem; color: #d1d5db; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.8125rem; opacity: 0.6; }

/* ========================================
   COMPONENTS: CTA BANNER
   ======================================== */
.cta-banner { background: linear-gradient(135deg, #1a3320, #2D5016); color: white; padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10zm0-20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner__content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-banner__title { color: white; font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
.cta-banner__text { font-size: 1.0625rem; opacity: 0.88; margin-bottom: 1.75rem; }

/* ========================================
   COMPONENTS: FAQ
   ======================================== */
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 0.75rem; overflow: hidden; background: white; transition: all var(--transition-fast); }
.faq-item:hover { border-color: var(--color-primary-light); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 600; font-family: var(--font-body); text-align: left; background: none; border: none; cursor: pointer; color: var(--color-text); transition: all var(--transition-fast); }
.faq-item__question:hover { color: var(--color-primary); background: rgba(45,80,22,0.02); }
.faq-item__icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: #f0fdf4; color: var(--color-primary); display: flex; align-items: center; justify-content: center; transition: transform var(--transition-fast); font-size: 14px; }
.faq-item.active .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-item__answer-inner { padding: 0 1.5rem 1.25rem; color: var(--color-text-muted); line-height: 1.7; font-size: 0.9375rem; }

/* ========================================
   COMPONENTS: WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; background: #25D366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-fast); text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); color: white; }
@keyframes whatsapp-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); } }

/* ========================================
   COMPONENTS: SECTION HEADERS
   ======================================== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header__label { display: inline-block; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-primary); margin-bottom: 0.75rem; }
.section-header__title { margin-bottom: 0.75rem; }
.section-header__desc { font-size: 1.0625rem; color: var(--color-text-muted); line-height: 1.7; }

/* ========================================
   UTILITY
   ======================================== */
.prose { max-width: 800px; margin-left: auto; margin-right: auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-border); }
.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; }
.prose ul li::before { content: '✅'; position: absolute; left: 0; top: 1px; }
.prose strong { color: var(--color-text); }

.hide-mobile { display: none !important; }
@media (max-width: 767px) { .hero__actions { flex-direction: column; } .hero__actions .btn { width: 100%; justify-content: center; } }

/* WordPress block editor support */
.wp-block { margin-bottom: 1.5rem; }
.entry-content { max-width: 800px; margin: 0 auto; padding: 2rem 1rem; }
.entry-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.entry-content ul { padding-left: 1.5rem; }
.entry-content ul li { margin-bottom: 0.5rem; }

/* Contact form responsiveness */
@media (max-width: 640px) {
    #contact-form [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
