:root {   --color-success: #10B981;
--color-warning: #F59E0B;
--color-error: #EF4444;  --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; --font-size-xs: 0.875rem; --font-size-sm: 1rem; --font-size-base: 1.125rem; --font-size-lg: 1.25rem; --font-size-xl: 1.5rem; --font-size-2xl: 2.25rem; --font-size-3xl: 3rem;  --line-height-tight: 1.2;
--line-height-normal: 1.6;
--line-height-relaxed: 1.8; --font-weight-normal: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700; --space-xs: 0.5rem; --space-sm: 1rem; --space-md: 1.5rem; --space-lg: 2rem; --space-xl: 3rem; --space-2xl: 5rem;  --container-max-width: 1200px;
--content-max-width: 720px; --border-radius-sm: 4px;
--border-radius-md: 6px;
--border-radius-lg: 12px;
--border-width: 1px; --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
--shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.12);
--shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.15); --transition-fast: 150ms ease;
--transition-base: 300ms ease;
--transition-slow: 500ms ease; --z-base: 1;
--z-dropdown: 100;
--z-sticky: 200;
--z-modal: 1000;
} @import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap");  *, *::before, *::after {
box-sizing: border-box;
} body {
font-family: var(--font-body);
font-size: var(--font-size-base);
line-height: var(--line-height-normal);
color: var(--color-text-primary);
background-color: var(--color-bg-white);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: 0;
padding: 0;
overflow-x: hidden;
} html {
scroll-behavior: smooth;
}  h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
font-weight: var(--font-weight-bold);
line-height: var(--line-height-tight);
color: var(--color-text-primary);
margin-top: 0;
margin-bottom: var(--space-md);
}
h1 {
font-size: var(--font-size-3xl);
font-weight: var(--font-weight-bold);
letter-spacing: -0.02em;
}
h2 {
font-size: var(--font-size-2xl);
font-weight: var(--font-weight-bold);
letter-spacing: -0.01em;
}
h3 {
font-size: var(--font-size-xl);
font-weight: var(--font-weight-semibold);
}
h4 {
font-size: var(--font-size-lg);
font-weight: var(--font-weight-semibold);
}
h5, h6 {
font-size: var(--font-size-base);
font-weight: var(--font-weight-semibold);
} p {
margin-top: 0;
margin-bottom: var(--space-md);
line-height: var(--line-height-normal); } ul, ol {
margin-top: 0;
margin-bottom: var(--space-md);
padding-left: var(--space-lg);
}
li {
margin-bottom: var(--space-sm);
line-height: var(--line-height-normal);
} a {
color: var(--color-primary);
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 2px;
transition: color var(--transition-fast);
}
a:hover {
color: var(--color-primary-hover);
text-decoration-thickness: 2px;
}
a:focus {
outline: 2px solid var(--color-primary);
outline-offset: 2px;
} nav a,
.nav-link {
text-decoration: none;
}
nav a:hover,
.nav-link:hover {
text-decoration: none;
color: var(--color-primary-hover);
} .link-button {
text-decoration: none;
font-weight: var(--font-weight-semibold);
}
.link-button:hover {
text-decoration: none;
} .icon-link,
a.icon-link {
text-decoration: none;
display: inline-flex;
align-items: center;
gap: var(--space-xs);
}
.icon-link:hover {
text-decoration: none;
} strong, b {
font-weight: var(--font-weight-semibold);
} small {
font-size: var(--font-size-xs);
color: var(--color-text-secondary);
}  .button,
button,
input[type="submit"],
input[type="button"],
.wp-block-button__link,
.kb-button {
font-family: var(--font-body);
font-size: var(--font-size-base);
font-weight: var(--font-weight-semibold);
line-height: 1;
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--space-xs);
padding: 16px 32px;
min-height: 48px; border: none;
border-radius: var(--border-radius-md);
cursor: pointer;
text-decoration: none;
transition: all var(--transition-base); user-select: none;
-webkit-user-select: none;
} .button-primary,
.wp-block-button.is-style-primary .wp-block-button__link,
.kb-button.kb-button-size-standard {
background-color: var(--color-primary);
color: var(--color-bg-white);
box-shadow: var(--shadow-sm);
}
.button-primary:hover,
.wp-block-button.is-style-primary .wp-block-button__link:hover,
.kb-button.kb-button-size-standard:hover {
background-color: var(--color-primary-hover);
box-shadow: var(--shadow-lg);
transform: translateY(-2px);
text-decoration: none;
color: var(--color-bg-white);
}
.button-primary:active {
transform: translateY(0);
box-shadow: var(--shadow-sm);
}
.button-primary:focus {
outline: 3px solid var(--color-primary-light);
outline-offset: 2px;
} .button-secondary,
.wp-block-button.is-style-outline .wp-block-button__link {
background-color: transparent;
color: var(--color-primary);
border: 2px solid var(--color-primary);
box-shadow: none;
}
.button-secondary:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
background-color: var(--color-primary-light);
border-color: var(--color-primary-hover);
color: var(--color-primary-hover);
text-decoration: none;
} .section-primary .button-secondary,
.bg-primary .button-secondary {
border-color: var(--color-bg-white);
color: var(--color-bg-white);
}
.section-primary .button-secondary:hover,
.bg-primary .button-secondary:hover {
background-color: var(--color-bg-white);
border-color: var(--color-bg-white);
color: var(--color-primary);
text-decoration: none;
} .button-ghost {
background-color: transparent;
color: var(--color-primary);
padding: 12px 24px;
box-shadow: none;
}
.button-ghost:hover {
background-color: var(--color-primary-light);
color: var(--color-primary-hover);
text-decoration: none;
transform: none;
} .button-white {
background-color: var(--color-bg-white);
color: var(--color-primary);
box-shadow: var(--shadow-sm);
}
.button-white:hover {
background-color: var(--color-bg-light);
color: var(--color-primary-hover);
box-shadow: var(--shadow-md);
transform: translateY(-2px);
text-decoration: none;
} .button-sm {
font-size: var(--font-size-sm);
padding: 12px 24px;
min-height: 40px;
}
.button-lg {
font-size: var(--font-size-lg);
padding: 20px 40px;
min-height: 56px;
} .button:disabled,
.button[disabled] {
opacity: 0.6;
cursor: not-allowed;
transform: none;
filter: grayscale(50%);
}
.button:disabled:hover,
.button[disabled]:hover {
background-color: var(--color-primary);
box-shadow: var(--shadow-sm);
transform: none;
}
.button-secondary:disabled,
.button-secondary[disabled] {
opacity: 0.5;
border-color: var(--color-border);
color: var(--color-text-muted);
}
.button-secondary:disabled:hover,
.button-secondary[disabled]:hover {
background-color: transparent;
border-color: var(--color-border);
color: var(--color-text-muted);
}  .section,
section,
.wp-block-group,
.kb-row-layout-wrap {
padding: var(--space-2xl) var(--space-lg);
width: 100%;
} .section-white,
.bg-white {
background-color: var(--color-bg-white);
} .section-light,
.bg-light,
.wp-block-group.has-background {
background-color: var(--color-bg-light);
} .section-primary,
.bg-primary {
background-color: var(--color-primary);
color: var(--color-bg-white);
}
.section-primary h1,
.section-primary h2,
.section-primary h3,
.section-primary h4,
.section-primary h5,
.section-primary h6,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3 {
color: var(--color-bg-white);
} .container,
.section-container,
.alignwide {
max-width: var(--container-max-width);
margin-left: auto;
margin-right: auto;
padding-left: var(--space-lg);
padding-right: var(--space-lg);
} .card {
background-color: var(--color-bg-white);
border-radius: var(--border-radius-lg);
padding: var(--space-xl);
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
}
.card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-2px);
}
.card-title {
font-size: var(--font-size-xl);
margin-bottom: var(--space-sm);
}
.card-description {
color: var(--color-text-secondary);
margin-bottom: var(--space-md);
}  .form-group {
margin-bottom: var(--space-md);
} label {
display: block;
font-weight: var(--font-weight-medium);
margin-bottom: var(--space-xs);
color: var(--color-text-primary);
} input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
font-family: var(--font-body);
font-size: var(--font-size-base);
width: 100%;
padding: 12px 16px;
border: 2px solid var(--color-border);
border-radius: var(--border-radius-md);
background-color: var(--color-bg-white);
transition: border-color var(--transition-fast);
}
input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px var(--color-primary-light);
}
textarea {
min-height: 120px;
resize: vertical;
} ::placeholder {
color: var(--color-text-muted);
}  .text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; } .text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-bg-white) !important; } .font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); } .mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); } .hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; } .flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); } .rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-full { border-radius: 9999px; } .shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }  .kb-button.kb-btn-global-fill {
background-color: var(--color-primary);
color: var(--color-bg-white);
}
.kb-button.kb-btn-global-fill:hover {
background-color: var(--color-primary-hover);
} .kb-row-layout-wrap .kb-row-layout-inner {
max-width: var(--container-max-width);
margin-left: auto;
margin-right: auto;
}  @media (max-width: 768px) {
:root { --font-size-3xl: 2.25rem; --font-size-2xl: 1.875rem; --font-size-xl: 1.25rem;  --space-2xl: 3rem; }
.section,
section,
.wp-block-group {
padding: var(--space-2xl) var(--space-md);
}
.container,
.section-container {
padding-left: var(--space-md);
padding-right: var(--space-md);
}
} @media (max-width: 480px) {
:root { --font-size-3xl: 2rem; --font-size-2xl: 1.5rem; --font-size-xl: 1.125rem; --font-size-base: 1rem;  --space-2xl: 2.5rem; }
.section,
section,
.wp-block-group {
padding: var(--space-xl) var(--space-sm);
}
.button,
button,
.wp-block-button__link {
width: 100%;
justify-content: center;
} .flex .button,
.flex button {
width: auto;
min-width: 140px;
}
}  :focus-visible {
outline: 3px solid var(--color-primary);
outline-offset: 2px;
} @media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
} .sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}   img {
max-width: 100%;
height: auto;
display: block;
} .content img,
article img,
.post-content img {
border-radius: var(--border-radius-md); margin-top: 4px;
margin-bottom: 24px;
box-shadow: var(--shadow-sm);
} .hero-image,
.featured-image {
width: 100%;
height: auto;
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-lg);
margin-bottom: var(--space-xl);
} .inline-image {
display: inline-block;
max-width: 300px;
margin: var(--space-sm);
border-radius: var(--border-radius-sm);
} figure { margin: 4px 0 24px 0;
}
figure img {
border-radius: var(--border-radius-md); margin-bottom: var(--space-sm);
}
figcaption {
font-size: var(--font-size-sm);
color: var(--color-text-secondary);
text-align: center;
font-style: italic;
padding: 0 var(--space-md);
} .icon {
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
}
.icon-sm {
width: 16px;
height: 16px;
}
.icon-lg {
width: 32px;
height: 32px;
}
.icon-xl {
width: 48px;
height: 48px;
} .icon-accent {
filter: invert(37%) sepia(95%) saturate(1785%) hue-rotate(197deg) brightness(98%) contrast(101%); } .avatar {
border-radius: 50%;
width: 48px;
height: 48px;
object-fit: cover;
box-shadow: var(--shadow-sm);
}
.avatar-sm {
width: 32px;
height: 32px;
}
.avatar-lg {
width: 64px;
height: 64px;
}
.avatar-xl {
width: 96px;
height: 96px;
} .logo {
max-height: 40px;
width: auto;
}
.logo-sm {
max-height: 24px;
}
.logo-lg {
max-height: 60px;
} .image-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--space-md);
margin: var(--space-xl) 0;
}
.image-grid img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: var(--border-radius-md);
box-shadow: var(--shadow-sm);
transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.image-grid img:hover {
transform: scale(1.02);
box-shadow: var(--shadow-lg);
} @media (max-width: 768px) {
.hero-image,
.featured-image {
border-radius: var(--border-radius-sm);
}
.image-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.image-grid img {
height: 150px;
}
}  table {
width: 100%;
border-collapse: collapse;
margin: var(--space-xl) 0;
background-color: var(--color-bg-white);
border-radius: var(--border-radius-md);
overflow: hidden;
box-shadow: var(--shadow-md);
} thead {
background-color: var(--color-primary);
color: var(--color-bg-white);
}
th {
padding: var(--space-md) var(--space-lg);
text-align: left;
font-weight: var(--font-weight-semibold);
font-size: var(--font-size-base);
border-bottom: 2px solid var(--color-primary-hover);
} tbody tr {
border-bottom: 1px solid var(--color-border);
transition: background-color var(--transition-fast);
}
tbody tr:hover {
background-color: var(--color-bg-light);
}
tbody tr:last-child {
border-bottom: none;
}
td {
padding: var(--space-md) var(--space-lg);
font-size: var(--font-size-base);
color: var(--color-text-primary);
} .table-striped tbody tr:nth-child(odd) {
background-color: var(--color-bg-light);
}
.table-striped tbody tr:nth-child(even) {
background-color: var(--color-bg-white);
} .comparison-table {
text-align: center;
}
.comparison-table th {
text-align: center;
font-size: var(--font-size-lg);
}
.comparison-table td:first-child {
text-align: left;
font-weight: var(--font-weight-medium);
} .feature-yes {
color: var(--color-success);
font-weight: var(--font-weight-bold);
}
.feature-yes::before {
content: "✓ ";
}
.feature-no {
color: var(--color-text-muted);
}
.feature-no::before {
content: "− ";
} .table-responsive {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin: var(--space-xl) 0;
position: relative;
}
.table-responsive table {
margin: 0;
min-width: 600px;
} .comparison-table th:first-child,
.comparison-table td:first-child {
position: sticky;
left: 0;
z-index: 2;
background-color: var(--color-bg-white);
}
.comparison-table th:first-child {
background-color: var(--color-primary);
z-index: 3;
} .comparison-table tbody tr:nth-child(odd) td:first-child {
background-color: var(--color-bg-light);
}
.comparison-table tbody tr:nth-child(even) td:first-child {
background-color: var(--color-bg-white);
} .table-scroll-hint {
color: var(--color-text-secondary);
font-size: var(--font-size-sm);
font-style: italic;
margin-bottom: var(--space-sm);
} .table-fade-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 40px;
background: linear-gradient(to left, var(--color-bg-white, #ffffff), color-mix(in srgb, var(--color-bg-white, #ffffff) 0%, transparent));
pointer-events: none;
z-index: 1;
} .section-light .table-fade-overlay {
background: linear-gradient(to left, var(--color-bg-light, #f7f7f7), color-mix(in srgb, var(--color-bg-light, #f7f7f7) 0%, transparent));
} .comparison-table {
width: 100%;
min-width: 650px;
} @media (max-width: 768px) {
th,
td {
padding: var(--space-sm) var(--space-md);
font-size: var(--font-size-sm);
}
}
@media (max-width: 480px) {
th,
td {
padding: 8px 10px;
font-size: 14px;
}
th {
font-size: 13px;
} .comparison-table {
min-width: 110%;
}
} @media print {
.button,
button,
nav,
.no-print {
display: none;
}
body {
font-size: 12pt;
line-height: 1.5;
color: #000;
background: #fff;
}
a {
text-decoration: underline;
color: #000;
}
h1, h2, h3, h4, h5, h6 {
page-break-after: avoid;
}
} .hero {
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
padding: 80px 20px;
min-height: 75vh;
display: flex;
align-items: center;
}
.hero-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 60% 40%;
gap: 60px;
align-items: center;
}
.hero-text h1 {
font-size: 56px;
font-weight: 700;
line-height: 1.2;
color: var(--color-text-primary);
margin-bottom: 20px;
}
.hero-text h2 {
font-size: 22px;
font-weight: 400;
line-height: 1.6;
color: var(--color-text-secondary);
margin-bottom: 32px;
max-width: 90%;
}
.hero .cta-button {
display: inline-block;
background: var(--color-primary);
color: #ffffff;
padding: 16px 32px;
font-size: 18px;
font-weight: 600;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.hero .cta-button:hover {
background: var(--color-primary-hover);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
transform: translateY(-2px);
}
.hero-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-image img:hover {
transform: translateY(-8px);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
} @media (max-width: 768px) {
.hero {
min-height: auto;
padding: 60px 20px;
}
.hero-container {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-text h1 {
font-size: 36px;
}
.hero-text h2 {
font-size: 18px;
max-width: 100%;
}
} .social-proof {
background: #ffffff;
padding: 40px 20px;
text-align: center;
border-bottom: 1px solid var(--color-border, #e5e5e5);
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
color: #718096;
margin-bottom: 24px;
font-weight: 600;
}
.logo-bar {
max-width: 1000px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}
.logo-bar img {
height: 32px;
opacity: 0.6;
filter: grayscale(100%);
transition: all 0.3s ease;
}
.logo-bar img:hover {
opacity: 1;
filter: grayscale(0%);
} .site-header {
background: var(--color-bg-white);
padding: 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 10px 40px;
display: flex;
align-items: center;
justify-content: space-between;
min-height: 80px;
}
.header-logo {
flex-shrink: 0;
}
.header-logo a {
display: block;
line-height: 0;
}
.header-logo img {
max-width: 267px;
max-height: 60px;
height: auto;
width: auto;
} .header-nav {
display: none; flex: 1;
margin: 0 40px;
}
.header-nav.has-menu {
display: flex;
justify-content: center;
}
.header-nav ul {
list-style: none;
display: flex;
gap: 32px;
margin: 0;
padding: 0;
}
.header-nav li {
margin: 0;
}
.header-nav a {
color: var(--text-dark);
font-size: 16px;
font-weight: 500;
text-decoration: none;
transition: color 0.3s ease;
}
.header-nav a:hover {
color: var(--color-primary);
} .header-cta {
flex-shrink: 0;
}
.header-cta-button {
display: inline-block;
background: var(--color-primary) !important;
color: #ffffff !important;
padding: 12px 24px;
font-size: 16px;
font-weight: 600;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 2px 8px color-mix(in srgb, var(--color-primary) 20%, transparent);
white-space: nowrap;
}
.header-cta-button:hover {
background: var(--color-primary-hover);
box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 30%, transparent);
transform: translateY(-2px);
color: #ffffff;
} @media (max-width: 1024px) {
.site-header {
position: relative; }
.header-container {
padding: 10px 20px;
min-height: 70px;
}
.header-logo img {
max-width: 200px;
max-height: 45px;
} .header-nav {
display: none !important;
}
.header-cta-button {
padding: 10px 20px;
font-size: 14px;
}
} @media (max-width: 480px) {
.header-logo img {
max-width: 160px;
max-height: 38px;
}
.header-cta-button {
padding: 8px 16px;
font-size: 13px;
}
}  .site-footer {
background: var(--color-bg-dark);
color: #ffffff;
padding: 60px 0 0 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-main {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px 60px 40px;
display: grid;
grid-template-columns: 40% 30% 30%;
gap: 40px;
} .footer-cta h3 {
font-size: 28px;
font-weight: 700;
color: #ffffff;
margin-bottom: 12px;
}
.footer-cta p {
font-size: 16px;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 24px;
line-height: 1.6;
}
.footer-cta-button {
display: inline-block;
background: var(--color-primary) !important;
color: #ffffff !important;
padding: 14px 28px;
font-size: 16px;
font-weight: 600;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 30%, transparent);
}
.footer-cta-button:hover {
background: var(--color-primary-hover);
box-shadow: 0 6px 16px color-mix(in srgb, var(--color-primary) 40%, transparent);
transform: translateY(-2px);
color: #ffffff;
} .footer-newsletter {
margin-top: 32px;
display: none;
}
.footer-newsletter.active {
display: block;
}
.footer-newsletter h4 {
font-size: 18px;
color: #ffffff;
margin-bottom: 12px;
}
.footer-newsletter form {
display: flex;
gap: 8px;
}
.footer-newsletter input[type="email"] {
flex: 1;
padding: 12px 16px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 6px;
background: rgba(255, 255, 255, 0.1);
color: #ffffff;
font-size: 14px;
}
.footer-newsletter input::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.footer-newsletter button {
padding: 12px 24px;
background: var(--color-primary);
color: #ffffff;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
} @media (max-width: 767px) {
.footer-newsletter form {
flex-direction: column;
}
.footer-newsletter input[type="email"] {
width: 100%;
font-size: 16px; }
.footer-newsletter button {
width: 100%;
padding: 14px 24px;
font-size: 16px;
}
}
.footer-newsletter button:hover {
background: var(--color-primary-hover);
} .footer-links h4 {
font-size: 16px;
font-weight: 600;
color: #ffffff;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.footer-links ul {
list-style: none;
margin: 0;
padding: 0;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-size: 15px;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: var(--primary-light);
} .footer-contact h4 {
font-size: 16px;
font-weight: 600;
color: #ffffff;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.footer-contact p {
color: rgba(255, 255, 255, 0.8);
font-size: 14px;
line-height: 1.8;
margin-bottom: 8px;
}
.footer-contact a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-contact a:hover {
color: var(--primary-light);
} .footer-social-bar {
background: var(--color-bg-dark);
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 24px 0;
display: none;
}
.footer-social-bar.active {
display: block;
}
.footer-social-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
display: flex;
justify-content: center;
gap: 24px;
}
.footer-social-bar a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-size: 18px;
transition: all 0.3s ease;
}
.footer-social-bar a:hover {
background: var(--color-primary);
color: #ffffff;
transform: translateY(-2px);
} .footer-social-bar svg {
width: 20px;
height: 20px;
fill: currentColor;
} .footer-legal {
background: var(--color-bg-dark);
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 20px 0;
}
.footer-legal-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 8px;
}
.footer-legal a {
color: rgba(255, 255, 255, 0.6);
text-decoration: none;
font-size: 12px;
transition: color 0.3s ease;
}
.footer-legal a:hover {
color: rgba(255, 255, 255, 0.9);
}
.footer-legal-separator {
color: rgba(255, 255, 255, 0.4);
margin: 0 4px;
} @media (max-width: 768px) {
.footer-main {
grid-template-columns: 1fr;
gap: 40px;
padding: 0 20px 40px 20px;
} .footer-cta,
.footer-links,
.footer-contact {
text-align: center;
}
.footer-links ul {
text-align: center;
}
.footer-social-container,
.footer-legal-container {
padding: 0 20px;
}
.footer-legal-container {
flex-direction: column;
text-align: center;
gap: 12px;
}
.footer-legal-separator {
display: none;
}
} .mobile-sticky-footer {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--color-primary);
padding: 16px 20px;
box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
z-index: 999;
animation: slideUp 0.4s ease;
}
.mobile-sticky-footer.active {
display: block;
}
.mobile-sticky-footer.closed {
display: none;
}
@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
.sticky-footer-container {
max-width: 600px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.sticky-footer-text {
flex: 1;
color: #ffffff;
font-size: 15px;
font-weight: 600;
line-height: 1.4;
}
.sticky-footer-cta {
display: flex;
align-items: center;
gap: 12px;
}
.sticky-footer-button {
display: inline-block;
background: #ffffff;
color: var(--color-primary);
padding: 10px 20px;
font-size: 14px;
font-weight: 700;
border-radius: 6px;
text-decoration: none;
white-space: nowrap;
transition: all 0.3s ease;
}
.sticky-footer-button:hover {
background: rgba(255, 255, 255, 0.9);
transform: scale(1.05);
}
.sticky-footer-close {
background: transparent;
border: none;
color: #ffffff;
font-size: 24px;
cursor: pointer;
padding: 0;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
opacity: 0.8;
transition: opacity 0.3s ease;
}
.sticky-footer-close:hover {
opacity: 1;
} @media (min-width: 1025px) {
.mobile-sticky-footer {
display: none !important;
}
} @media (max-width: 480px) {
.sticky-footer-text {
font-size: 13px;
}
.sticky-footer-button {
padding: 8px 16px;
font-size: 13px;
}
} .scroll-to-top {
display: none;
position: fixed;
bottom: 80px;
right: 20px; width: 50px !important;
height: 50px !important;
min-height: 50px !important;
padding: 0 !important; background: var(--color-primary);
color: #ffffff;
border: none;
border-radius: 50%;
cursor: pointer;
z-index: 998;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
opacity: 0;
transform: translateY(20px);
}
.scroll-to-top.visible {
display: flex;
align-items: center;
justify-content: center;
opacity: 1;
transform: translateY(0);
}
.scroll-to-top:hover {
background: var(--color-primary-hover);
transform: translateY(-4px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.scroll-to-top svg {
width: 24px;
height: 24px;
fill: currentColor;
} @media (min-width: 1025px) {
.scroll-to-top {
display: none !important;
}
} .mobile-sticky-footer.active ~ .scroll-to-top {
bottom: 140px; }  .single-post-wrapper {
width: 100% !important;
margin: 0 auto !important;
padding: 20px 16px !important;
max-width: 860px !important; } .single-post-wrapper:has(.has-sidebar) {
max-width: 1200px !important;
}
.single-post-container {
display: grid;
grid-template-columns: 1fr;
gap: 0;
} @media (min-width: 769px) {
.single-post-container.has-sidebar {
grid-template-columns: 1fr 300px !important;
gap: 24px;
}
.single-post-container.no-sidebar {
grid-template-columns: 1fr !important;
gap: 0 !important;
} .single-post-content {
min-width: 0;
max-width: none;
}
} @media (max-width: 768px) {
.single-post-wrapper {
padding: 12px 16px;
}
.single-post-content {
max-width: none;
width: 100%;
}
} .post-meta-top {
font-size: 14px;
color: var(--color-text-secondary);
margin-bottom: 15px;
display: flex;
flex-wrap: wrap;
gap: 8px;
align-items: center;
}
.post-meta-top a {
color: var(--color-text-primary);
text-decoration: none;
transition: color 0.2s ease;
}
.post-meta-top a:hover {
color: var(--color-primary, #0066cc);
}
.post-category a {
font-weight: 600;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.5px;
}
.meta-separator {
color: #ddd;
} @media (max-width: 480px) {
.post-meta-top {
font-size: 13px;
}
} .entry-title {
font-size: 32px !important;
line-height: 1.3;
margin-bottom: 25px;
font-weight: 700;
color: var(--color-text-primary);
}
@media (min-width: 769px) {
.entry-title {
font-size: 42px !important;
}
} .post-featured-image {
margin-bottom: 20px;
border-radius: 8px;
overflow: hidden; max-width: 75ch;
} .post-featured-image img {
width: 100%;
height: auto;
display: block;
margin-top: 0;
margin-bottom: 0;
box-shadow: none;
} @media (max-width: 768px) {
.post-featured-image {
display: none;
}
} .entry-content {
font-size: 18px;
line-height: 1.7;
color: var(--color-text-primary);
margin-top: 0;
margin-bottom: 40px; text-align: left; max-width: 75ch; overflow-wrap: break-word;
word-break: break-word;
}
.entry-content p {
margin-bottom: 20px; text-align: left;
} .entry-content p:last-child {
margin-bottom: 0;
} .entry-content > :first-child {
margin-top: 0;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin-top: 36px;
margin-bottom: 10px;
font-weight: 700;
color: var(--color-text-primary);
line-height: 1.3;
}
.entry-content h2 { font-size: 24px !important;
font-weight: 700;
letter-spacing: -0.01em;
}
.entry-content h3 { font-size: 20px !important;
font-weight: 600;
letter-spacing: 0;
} .entry-content h4 {
font-size: 18px !important;
font-weight: 600;
letter-spacing: 0;
} .entry-content h5,
.entry-content h6 {
font-size: 11px !important;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
opacity: 0.7;
margin-top: 28px;
margin-bottom: 8px;
}
.entry-content img {
max-width: 100%;
height: auto;
border-radius: 8px; margin-top: 4px;
margin-bottom: 24px;
}
.entry-content ul,
.entry-content ol {
margin: 20px 0;
padding-left: 30px;
}
.entry-content li {
margin-bottom: 10px;
} .entry-content blockquote {
margin: 30px 0;
padding: 16px 24px;
border-left: 4px solid var(--color-primary, #0066cc);
background: var(--color-bg-light, #f8f9fa);
border-radius: 0 8px 8px 0;
font-style: italic;
color: var(--color-text-secondary, #555);
}
.entry-content blockquote p {
margin-bottom: 0;
} .entry-content code {
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
font-size: 0.875em; background: var(--color-bg-light, #f0f2f5);
color: var(--color-text-primary);
padding: 2px 6px;
border-radius: 4px;
border: 1px solid var(--color-border, #e5e5e5);
} .entry-content pre {
margin: 25px 0;
padding: 20px;
background: #1e1e2e;
color: #cdd6f4;
border-radius: 8px;
overflow-x: auto;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
font-size: 14px;
line-height: 1.6;
}
.entry-content pre code {
background: none;
border: none;
padding: 0;
font-size: inherit;
color: inherit;
} .post-tags {
margin: 40px 0;
padding: 20px 0;
border-top: 1px solid var(--color-border, #e5e5e5);
border-bottom: 1px solid var(--color-border, #e5e5e5);
}
.tags-label {
font-weight: 600;
margin-right: 10px;
color: #666;
font-size: 14px;
}
.tag-pill {
display: inline-block;
padding: 6px 14px;
margin: 5px 5px 5px 0;
background: var(--color-bg-light);
border-radius: 20px;
font-size: 13px;
color: var(--color-text-secondary);
text-decoration: none;
transition: all 0.2s ease;
}
.tag-pill:hover {
background: var(--color-primary, #0066cc);
color: #fff;
} .author-bio-section { margin: 50px 0 40px 0;
padding: 30px 0 0 0;
border-top: 1px solid var(--color-border, #e5e5e5); max-width: 75ch;
}
.author-bio-container {
display: flex;
gap: 20px;
align-items: flex-start;
}
.author-avatar {
flex-shrink: 0;
}
.author-avatar img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 3px solid #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.author-info {
flex: 1;
}
.author-name {
font-size: 22px;
margin: 0 0 10px 0;
font-weight: 700;
}
.author-name a {
color: var(--color-text-primary);
text-decoration: none;
}
.author-name a:hover {
color: var(--color-primary, #0066cc);
}
.author-bio {
font-size: 16px;
line-height: 1.6;
color: var(--color-text-secondary);
margin-bottom: 15px;
}
.author-posts-link {
display: inline-block;
font-size: 14px;
font-weight: 600;
color: var(--color-primary, #0066cc);
text-decoration: none;
transition: color 0.2s ease;
}
.author-posts-link:hover {
color: var(--color-primary-hover, #004999);
} @media (max-width: 768px) {
.author-bio-container {
flex-direction: column;
align-items: center;
text-align: center;
}
.author-avatar img {
width: 80px;
height: 80px;
}
} .post-share-section {
margin: 30px 0 50px 0;
text-align: center;
padding: 20px 0;
}
.share-prompt {
font-size: 16px;
color: #666;
margin-bottom: 15px;
font-weight: 500;
} .copy-link-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
background: var(--color-primary, #0066cc);
color: #fff;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 2px 8px color-mix(in srgb, var(--color-primary) 20%, transparent);
}
.copy-link-btn:hover {
background: var(--color-primary-hover, #004999);
transform: translateY(-2px);
box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 30%, transparent);
}
.copy-link-btn:active {
transform: translateY(0);
}
.copy-link-btn svg {
width: 20px;
height: 20px;
} .copy-success-msg {
display: inline-block;
margin-left: 15px;
padding: 8px 16px;
background: var(--color-success, #10B981);
color: #fff;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .addtoany-wrapper {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid var(--color-border, #e5e5e5);
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
} .related-posts-section {
margin: 60px 0;
}
.related-posts-title {
font-size: 28px;
font-weight: 700;
margin-bottom: 30px;
text-align: center;
color: var(--color-text-primary);
}
.related-posts-grid {
display: grid;
grid-template-columns: 1fr;
gap: 25px;
}
@media (min-width: 600px) {
.related-posts-grid { grid-template-columns: repeat(2, 1fr);
}
} .related-post-item {
background: var(--color-bg-light);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-post-item:hover {
transform: translateY(-4px);
box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.related-post-link {
text-decoration: none;
color: inherit;
display: block;
}
.related-post-image {
width: 100%;
aspect-ratio: 16/9;
overflow: hidden;
background: var(--color-bg-light);
}
.related-post-image img {
width: 100%;
height: 100%;
object-fit: cover; object-position: top;
}
.related-post-content {
padding: 20px;
}
.related-post-title {
font-size: 18px;
font-weight: 700;
margin-bottom: 10px;
color: var(--color-text-primary);
line-height: 1.4;
}
.related-post-meta {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
}
.related-post-category {
display: inline-block;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
color: var(--color-primary, #0066cc);
letter-spacing: 0.5px;
}
.related-post-read {
font-size: 14px;
font-weight: 600;
color: var(--color-text-secondary);
transition: color 0.2s ease;
}
.related-post-link:hover .related-post-read {
color: var(--color-primary, #0066cc);
} .next-post-card {
margin: 60px 0 40px 0;
padding: 30px;
background: linear-gradient(135deg, var(--color-primary, #0066cc) 0%, var(--color-primary-hover, #004999) 100%);
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
} .dark-palette .next-post-card {
background:
linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
}
.next-label {
display: block;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: rgba(255,255,255,0.8);
margin-bottom: 15px;
}
.next-post-link {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
text-decoration: none;
color: #fff;
}
@media (min-width: 600px) {
.next-post-link {
grid-template-columns: 200px 1fr;
align-items: center;
}
}
.next-post-image {
border-radius: 12px;
overflow: hidden;
aspect-ratio: 16/9;
}
.next-post-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top;
}
.next-post-content {
padding: 0;
}
.next-post-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 10px;
color: #fff;
line-height: 1.3;
}
.next-post-excerpt {
font-size: 16px;
line-height: 1.6;
margin-bottom: 15px;
color: rgba(255,255,255,0.9);
}
.next-post-cta {
display: inline-block;
font-size: 16px;
font-weight: 600;
color: #fff;
padding: 10px 20px;
background: rgba(255,255,255,0.2);
border-radius: 8px;
transition: background 0.2s ease; width: 100%;
text-align: center;
box-sizing: border-box;
}
@media (min-width: 600px) {
.next-post-cta { width: auto;
}
}
.next-post-link:hover .next-post-cta {
background: rgba(255,255,255,0.3);
} .single-post-sidebar {
display: none; } .no-sidebar .single-post-sidebar {
display: none !important;
}
@media (min-width: 769px) {
.single-post-sidebar {
display: block;
position: sticky;
top: 100px; align-self: start; max-height: calc(100vh - 120px);
overflow-y: auto;
overflow-x: hidden;
scrollbar-width: none; -ms-overflow-style: none; }
}
.single-post-sidebar::-webkit-scrollbar {
display: none; } .single-post-sidebar .widget {
padding: 0px;
margin-bottom: 0;
}
.single-post-sidebar .widget:last-child {
border-bottom: none;
}
.single-post-sidebar .widget img {
max-width: 100%;
height: auto;
display: block;
}
.single-post-sidebar .widget-title {
font-size: 18px;
font-weight: 700;
margin-bottom: 15px;
color: var(--color-text-primary);
}
.single-post-sidebar .widget ul {
list-style: none;
padding: 0;
margin: 0;
}
.single-post-sidebar .widget li {
padding: 8px 0;
border-bottom: 1px solid var(--color-border, #e5e5e5);
border-bottom: none;
}
.single-post-sidebar .widget a {
color: var(--color-text-secondary);
text-decoration: none;
transition: color 0.2s ease;
}
.single-post-sidebar .widget a:hover {
color: var(--color-primary, #0066cc);
} #reading-progress-bar {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 4px;
background: linear-gradient(90deg, var(--color-primary, #0066cc) 0%, var(--color-primary-hover, #004999) 100%);
z-index: 9999;
transition: width 0.1s ease;
} @media (max-width: 768px) {
.single-post-wrapper {
padding: 12px 16px !important;
}
.entry-content { font-size: 17px; line-height: 1.7;
} .entry-content h2 { font-size: 22px !important; }
.entry-content h3 { font-size: 19px !important; }
.entry-content h4 { font-size: 17px !important; }
.entry-content h5,
.entry-content h6 { font-size: 11px !important; } .related-posts-title {
font-size: 24px;
}
}  .post-meta-top a:focus,
.tag-pill:focus,
.author-posts-link:focus,
.related-post-link:focus,
.next-post-link:focus,
.copy-link-btn:focus {
outline: 2px solid var(--color-primary, #0066cc);
outline-offset: 2px;
} @media (prefers-contrast: high) {
.entry-content {
color: #000;
}
.post-meta-top {
color: #000;
}
}  .rank-math-toc-block {
background: var(--color-bg-light, #F7F7F7);
border: 1px solid var(--color-border, #E5E5E5);
border-left: 4px solid var(--color-primary, #0066cc);
border-radius: var(--border-radius-lg, 12px);
padding: 20px 24px;
margin: 30px 0;
font-size: 15px;
}
.rank-math-toc-block .rank-math-toc-title {
font-size: 16px;
font-weight: var(--font-weight-bold, 700);
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--color-text-primary, #2D2D2D);
margin: 0 0 14px 0;
display: flex;
align-items: center;
gap: 8px;
} .rank-math-toc-block .rank-math-toc-title::before {
content: '☰';
font-size: 14px;
color: var(--color-primary, #0066cc);
}
.rank-math-toc-block nav ul {
margin: 0;
padding: 0 0 0 18px;
list-style: none;
}
.rank-math-toc-block nav ul li {
margin: 6px 0;
padding: 0;
}
.rank-math-toc-block nav ul li a {
color: var(--color-text-secondary, #5A5A5A);
text-decoration: none;
line-height: 1.5;
transition: color 0.15s ease;
}
.rank-math-toc-block nav ul li a:hover {
color: var(--color-primary, #0066cc);
text-decoration: underline;
} .rank-math-toc-block nav ul ul {
padding-left: 16px;
margin-top: 4px;
}
.rank-math-toc-block nav ul ul li a {
font-size: 14px;
color: var(--color-text-muted, #858585);
} @media (max-width: 768px) {
.rank-math-toc-block {
padding: 0;
overflow: hidden;
} .rank-math-toc-block .rank-math-toc-title {
padding: 16px 20px;
margin: 0;
cursor: pointer;
user-select: none;
justify-content: space-between;
} .rank-math-toc-block .rank-math-toc-title::after {
content: '▾';
font-size: 18px;
color: var(--color-primary, #0066cc);
transition: transform 0.25s ease;
margin-left: auto;
} .rank-math-toc-block.toc-open .rank-math-toc-title::after {
transform: rotate(180deg);
} .rank-math-toc-block nav {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
padding: 0 20px;
} .rank-math-toc-block.toc-open nav {
max-height: 600px; padding: 0 20px 16px;
}
} @media (min-width: 769px) {
.rank-math-toc-block nav {
display: block !important; } .toc-sticky {
position: sticky;
top: 120px; }
}  .blog-listing-wrapper {
max-width: var(--container-max-width, 1200px);
margin: 0 auto;
padding: 40px 20px 60px;
} .blog-featured {
margin-bottom: 40px;
border-radius: var(--border-radius-lg, 12px);
overflow: hidden;
box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,.12));
background: var(--color-bg-white, #fff);
transition: box-shadow .2s ease;
} .dark-palette .blog-featured {
box-shadow: none;
border: 1px solid rgba(255, 255, 255, 0.12);
}
.blog-featured:hover {
box-shadow: var(--shadow-xl, 0 8px 24px rgba(0,0,0,.15));
}
.blog-featured__link {
display: grid;
grid-template-columns: 1fr;
text-decoration: none;
color: inherit;
}
@media (min-width: 768px) {
.blog-featured__link {
grid-template-columns: 1.4fr 1fr;
}
} .blog-featured__image {
position: relative;
aspect-ratio: 16 / 9;
overflow: hidden;
background: var(--color-bg-light, #f7f7f7);
}
@media (min-width: 768px) {
.blog-featured__image {
aspect-ratio: auto; min-height: 300px;
}
}
.blog-featured__image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
transition: transform .35s ease;
}
.blog-featured:hover .blog-featured__image img {
transform: scale(1.03);
} .blog-featured__category {
position: absolute;
top: 16px;
left: 16px;
padding: 5px 12px;
background: var(--color-primary, #0066cc);
color: #fff;
font-size: 12px;
font-weight: var(--font-weight-bold, 700);
text-transform: uppercase;
letter-spacing: .6px;
border-radius: 20px;
} .blog-featured__body {
padding: 28px 30px;
display: flex;
flex-direction: column;
justify-content: center;
gap: 14px;
}
.blog-featured__title {
font-size: clamp(20px, 3vw, 28px);
font-weight: var(--font-weight-bold, 700);
line-height: 1.3;
color: var(--color-text-primary, #2d2d2d);
margin: 0;
}
.blog-featured__excerpt {
font-size: 15px;
line-height: 1.6;
color: var(--color-text-secondary, #5a5a5a);
margin: 0;
}
.blog-featured__meta {
display: flex;
gap: 8px;
font-size: 13px;
color: var(--color-text-muted, #858585);
align-items: center;
}
.blog-meta-sep { opacity: .4; } .blog-controls {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 32px;
}
@media (min-width: 768px) {
.blog-controls {
flex-direction: row;
align-items: center;
justify-content: space-between;
}
} .blog-search {
position: relative;
flex-shrink: 0;
}
.blog-search__input {
width: 100%;
max-width: 260px;
padding: 10px 16px 10px 40px;
border: 1px solid var(--color-border, #e5e5e5);
border-radius: 30px;
font-size: 14px;
background: var(--color-bg-white, #fff);
color: var(--color-text-primary, #2d2d2d);
transition: border-color .2s, box-shadow .2s;
}
.blog-search__input:focus {
outline: none;
border-color: var(--color-primary, #0066cc);
box-shadow: 0 0 0 3px var(--color-primary-light, #e6f2ff);
}
.blog-search__icon {
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
width: 18px;
height: 18px;
color: var(--color-text-muted, #858585);
pointer-events: none;
} .blog-filter {
display: flex;
flex-wrap: wrap;
gap: 8px; overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding-bottom: 4px; }
.blog-filter::-webkit-scrollbar { display: none; }
.blog-filter__pill {
flex-shrink: 0;
padding: 7px 18px;
border: 1px solid var(--color-border, #e5e5e5);
border-radius: 30px;
background: var(--color-bg-white, #fff);
color: var(--color-text-secondary, #5a5a5a);
font-size: 13px;
font-weight: var(--font-weight-medium, 500);
cursor: pointer;
transition: all .15s ease;
white-space: nowrap;
}
.blog-filter__pill:hover:not(.blog-filter__pill--active) {
background: color-mix(in srgb, var(--color-primary) 10%, transparent);
border-color: var(--color-primary, #0066cc);
color: var(--color-primary, #0066cc);
}
.blog-filter__pill--active {
background: var(--color-primary, #0066cc) !important;
border-color: var(--color-primary, #0066cc) !important;
color: #fff !important;
} .blog-grid {
display: grid;
grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 600px) {
.blog-grid {
grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
.blog-grid {
grid-template-columns: repeat(3, 1fr); }
} .blog-card {
background: var(--color-bg-white, #fff);
border-radius: var(--border-radius-lg, 12px);
overflow: hidden;
box-shadow: var(--shadow-md, 0 2px 8px rgba(0,0,0,.08));
transition: transform .2s ease, box-shadow .2s ease;
} .blog-card__link {
display: flex;
flex-direction: column;
height: 100%;
text-decoration: none;
color: inherit;
} .blog-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,.12));
} @media (max-width: 599px) {
.blog-card__link {
flex-direction: row; align-items: stretch;
}
.blog-card__image {
width: 110px;
flex-shrink: 0;
aspect-ratio: 1 / 1; }
.blog-card__body {
flex: 1;
padding: 14px;
}
.blog-card__excerpt {
display: none; }
.blog-card__read-time {
display: none;
}
} .blog-card__image {
aspect-ratio: 16 / 9;
overflow: hidden;
background: var(--color-bg-light, #f7f7f7);
}
.blog-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
transition: transform .3s ease;
}
.blog-card:hover .blog-card__image img {
transform: scale(1.04);
} .blog-card__image-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(
135deg,
var(--color-bg-light, #f7f7f7) 0%,
var(--color-border, #e5e5e5) 100%
);
} .blog-card__body {
padding: 20px;
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
}
.blog-card__category {
font-size: 11px;
font-weight: var(--font-weight-bold, 700);
text-transform: uppercase;
letter-spacing: .7px;
color: var(--color-primary, #0066cc);
}
.blog-card__title {
font-size: 17px;
font-weight: var(--font-weight-bold, 700);
line-height: 1.35;
color: var(--color-text-primary, #2d2d2d);
margin: 0;
transition: color .15s ease;
}
.blog-card:hover .blog-card__title {
color: var(--color-primary, #0066cc);
} .blog-card__arrow {
display: inline-block;
opacity: 0;
transform: translateX(-4px);
transition: opacity .15s ease, transform .15s ease;
color: var(--color-primary, #0066cc);
font-style: normal;
}
.blog-card:hover .blog-card__arrow {
opacity: 1;
transform: translateX(0);
} @media (max-width: 599px) {
.blog-card__arrow {
opacity: 1;
transform: none;
}
}
.blog-card__excerpt {
font-size: 14px;
line-height: 1.55;
color: var(--color-text-secondary, #5a5a5a);
margin: 0;
flex: 1;
}
.blog-card__read-time {
font-size: 12px;
color: var(--color-text-muted, #858585);
margin-top: auto;
}  .blog-cta-card {
grid-column: 1 / -1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
padding: 36px 24px;
background: var(--color-primary-light, #e6f2ff);
border: 2px solid var(--color-primary, #0066cc);
border-radius: var(--border-radius-lg, 12px);
text-align: center;
}
@media (min-width: 600px) {
.blog-cta-card {
flex-direction: row;
text-align: left;
justify-content: space-between;
padding: 28px 36px;
}
}
.blog-cta-card__text {
font-size: 16px;
font-weight: var(--font-weight-medium, 500);
color: var(--color-text-primary, #2d2d2d);
margin: 0;
flex: 1;
}
.blog-cta-card__btn {
flex-shrink: 0;
display: inline-block;
padding: 12px 28px;
background: var(--color-primary, #0066cc);
color: #fff;
font-size: 15px;
font-weight: var(--font-weight-bold, 700);
border-radius: var(--border-radius-md, 6px);
text-decoration: none;
transition: background .2s ease, transform .15s ease;
white-space: nowrap;
}
.blog-cta-card__btn:hover {
background: var(--color-primary-hover, #004c99);
transform: translateY(-1px);
} .blog-no-posts,
.blog-no-results {
grid-column: 1 / -1;
text-align: center;
padding: 60px 20px;
color: var(--color-text-muted, #858585);
font-size: 16px;
} .blog-pagination {
margin-top: 50px;
display: flex;
justify-content: center;
}
.blog-pagination .page-numbers {
display: flex;
gap: 6px;
list-style: none;
margin: 0;
padding: 0;
flex-wrap: wrap;
justify-content: center;
}
.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 42px;
height: 42px;
padding: 0 12px;
border: 1px solid var(--color-border, #e5e5e5);
border-radius: var(--border-radius-md, 6px);
font-size: 14px;
font-weight: var(--font-weight-medium, 500);
color: var(--color-text-secondary, #5a5a5a);
text-decoration: none;
background: var(--color-bg-white, #fff);
transition: all .15s ease;
}
.blog-pagination .page-numbers li a:hover {
border-color: var(--color-primary, #0066cc);
color: var(--color-primary, #0066cc);
}
.blog-pagination .page-numbers li span.current {
background: var(--color-primary, #0066cc);
border-color: var(--color-primary, #0066cc);
color: #fff;
}
.blog-pagination .page-numbers li span.dots {
border-color: transparent;
background: transparent;
} .blog-card[data-hidden="true"] {
display: none;
}
.blog-cta-card[data-hidden="true"] {
display: none;
} .blog-filter__pill:focus-visible,
.blog-cta-card__btn:focus-visible,
.blog-card__link:focus-visible,
.blog-featured__link:focus-visible {
outline: 2px solid var(--color-primary, #0066cc);
outline-offset: 3px;
}  .hp-section-container {
max-width: var(--container-max-width, 1200px);
margin: 0 auto;
padding: 80px 20px;
}
.hp-section-container--narrow {
max-width: 720px;
}
.hp-section-title {
font-size: clamp(24px, 3vw, 36px);
font-weight: var(--font-weight-bold, 700);
color: var(--color-text-primary, #2d2d2d);
margin: 0 0 40px 0;
line-height: 1.2;
} .hp-section-title {
text-align: center;
} .hp-btn {
display: inline-block;
padding: 14px 32px;
font-size: 16px;
font-weight: var(--font-weight-bold, 700);
border-radius: var(--border-radius-md, 6px);
text-decoration: none;
transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
white-space: nowrap;
cursor: pointer;
border: none;
min-height: 48px; line-height: 1;
display: inline-flex;
align-items: center;
justify-content: center;
}
.hp-btn--primary {
background: var(--color-primary) !important;
color: #fff;
box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 25%, transparent);
}
.hp-btn--primary:hover {
background: var(--color-primary-hover, #004c99);
transform: translateY(-2px);
box-shadow: 0 6px 16px color-mix(in srgb, var(--color-primary) 35%, transparent);
color: #fff;
}
.hp-btn--large {
padding: 18px 40px;
font-size: 18px;
min-height: 56px;
}
@media (max-width: 599px) {
.hp-btn--large {
width: 100%;
justify-content: center;
}
}    .hp-hero {
background: linear-gradient(135deg, var(--color-bg-white) 0%, var(--color-bg-light) 100%);
padding: 80px 20px;
min-height: 70vh; display: flex;
align-items: center;
}
.hp-hero__container {
max-width: var(--container-max-width, 1200px);
margin: 0 auto;
display: grid;
grid-template-columns: 60% 40%;
gap: 60px;
align-items: center;
width: 100%;
}
.hp-hero__text {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.hp-hero__h1 {
font-size: clamp(32px, 4.5vw, 52px);
font-weight: var(--font-weight-bold, 700);
line-height: 1.15;
color: var(--color-text-primary, #2d2d2d);
margin: 0;
max-width: 14ch; }
.hp-hero__h2 {
font-size: clamp(16px, 2vw, 20px);
font-weight: var(--font-weight-normal, 400);
line-height: 1.6;
color: var(--color-text-secondary, #5a5a5a);
margin: 0;
max-width: 48ch; }
.hp-hero__subtext {
font-size: 13px;
color: var(--color-text-muted, #858585);
margin: 0;
}
.hp-hero__image {
display: flex;
align-items: center;
justify-content: center;
}
.hp-hero__image img {
width: 100%;
height: auto;
border-radius: var(--border-radius-lg, 12px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
transition: transform .3s ease, box-shadow .3s ease;
}
.hp-hero__image img:hover {
transform: translateY(-6px);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.16);
} @media (max-width: 767px) {
.hp-hero {
min-height: auto;
padding: 60px 20px;
}
.hp-hero__container {
grid-template-columns: 1fr;
gap: 32px;
}
.hp-hero__image {
display: none; }
.hp-hero__h1 {
max-width: 100%;
}
.hp-hero__text {
align-items: flex-start;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
.hp-hero__container {
grid-template-columns: 55% 45%;
gap: 40px;
}
} .hp-proof {
background: var(--color-bg-white, #fff);
border-top: 1px solid var(--color-border, #e5e5e5);
border-bottom: 1px solid var(--color-border, #e5e5e5);
padding: 32px 20px;
}
.hp-proof__container {
max-width: var(--container-max-width, 1200px);
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.hp-proof__text {
font-size: 13px;
font-weight: var(--font-weight-bold, 700);
text-transform: uppercase;
letter-spacing: .8px;
color: var(--color-text-muted, #858585);
margin: 0;
text-align: center;
} .hp-proof__logos {
display: flex;
justify-content: center;
align-items: center;
gap: 36px;
flex-wrap: wrap;
width: 100%;
}
.hp-proof__logo {
height: 28px;
width: auto;
opacity: .55;
filter: grayscale(100%);
transition: opacity .2s ease, filter .2s ease;
}
.hp-proof__logo:hover {
opacity: .85;
filter: grayscale(40%);
} .hp-proof__logos--scroll {
overflow: hidden;
mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
-webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
flex-wrap: nowrap;
justify-content: flex-start;
}
.hp-proof__logos--scroll .hp-proof__logos-track {
display: flex;
gap: 48px;
align-items: center;
animation: hp-logo-scroll 30s linear infinite;
width: max-content;
}
@keyframes hp-logo-scroll {
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
.hp-proof__logos--scroll .hp-proof__logos-track {
animation: none;
}
.hp-proof__logos--scroll {
flex-wrap: wrap;
overflow: visible;
mask-image: none;
-webkit-mask-image: none;
}
} .hp-proof__logos:not(.hp-proof__logos--scroll) .hp-proof__logos-track {
display: flex;
justify-content: center;
align-items: center;
gap: 36px;
flex-wrap: wrap;
width: 100%;
} .hp-benefits {
background: var(--color-bg-light, #f7f7f7);
}
.hp-benefits__list {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: 1fr;
gap: 16px;
max-width: 640px;
margin: 0 auto;
}
@media (min-width: 600px) {
.hp-benefits__list {
grid-template-columns: repeat(2, 1fr);
}
}
.hp-benefits__item {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 16px;
line-height: 1.5;
color: var(--color-text-primary, #2d2d2d);
text-align: left; }
.hp-benefits__icon {
flex-shrink: 0;
width: 24px;
height: 24px;
background: var(--color-primary, #0066cc);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: var(--font-weight-bold, 700);
margin-top: 1px;
} .hp-pricing {
background: var(--color-bg-white, #fff);
text-align: center;
}
.hp-pricing__urgency {
display: inline-block;
background: var(--color-error, #ef4444);
color: #fff;
font-size: 12px;
font-weight: var(--font-weight-bold, 700);
text-transform: uppercase;
letter-spacing: .7px;
padding: 5px 14px;
border-radius: 20px;
margin-bottom: 20px;
}
.hp-pricing__benefit {
font-size: 18px;
font-weight: var(--font-weight-semibold, 600);
color: var(--color-text-primary, #2d2d2d);
margin: 0 0 24px;
}
.hp-pricing__prices {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 32px;
flex-wrap: wrap;
}
.hp-pricing__old {
font-size: 20px;
color: var(--color-text-muted, #858585);
text-decoration: line-through;
}
.hp-pricing__arrow {
font-size: 18px;
color: var(--color-text-muted, #858585);
}
.hp-pricing__new {
font-size: 36px;
font-weight: var(--font-weight-bold, 700);
color: var(--color-primary, #0066cc);
}
.hp-pricing__subtext {
margin-top: 16px;
font-size: 13px;
color: var(--color-text-muted, #858585);
} .hp-how {
background: var(--color-bg-light, #f7f7f7);
}
.hp-how__steps {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
}
@media (min-width: 600px) {
.hp-how__steps {
grid-template-columns: repeat(3, 1fr);
}
}
.hp-how__step {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
text-align: left;
}
.hp-how__number {
width: 44px;
height: 44px;
background: var(--color-primary, #0066cc);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: var(--font-weight-bold, 700);
flex-shrink: 0;
}
.hp-how__step-title {
font-size: 18px;
font-weight: var(--font-weight-bold, 700);
color: var(--color-text-primary, #2d2d2d);
margin: 0;
}
.hp-how__step-text {
font-size: 15px;
line-height: 1.6;
color: var(--color-text-secondary, #5a5a5a);
margin: 0;
} .hp-features {
background: var(--color-bg-white, #fff);
}
.hp-features__list {
list-style: none;
margin: 0 auto;
padding: 0;
display: grid;
grid-template-columns: 1fr;
gap: 14px;
max-width: 640px;
}
@media (min-width: 600px) {
.hp-features__list {
grid-template-columns: repeat(2, 1fr);
}
}
.hp-features__item {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 15px;
line-height: 1.5;
color: var(--color-text-primary, #2d2d2d);
text-align: left;
}
.hp-features__icon {
color: var(--color-primary, #0066cc);
font-weight: var(--font-weight-bold, 700);
flex-shrink: 0;
margin-top: 1px;
} .hp-faq {
background: var(--color-bg-light, #f7f7f7);
}
.hp-faq__list {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 40px;
}
.hp-faq__item {
background: var(--color-bg-white, #fff);
border: 1px solid var(--color-border, #e5e5e5);
border-radius: var(--border-radius-md, 6px);
overflow: hidden;
}
.hp-faq__item[open] {
border-color: var(--color-primary, #0066cc);
}
.hp-faq__question {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
padding: 18px 20px;
font-size: 16px;
font-weight: var(--font-weight-semibold, 600);
color: var(--color-text-primary, #2d2d2d);
cursor: pointer;
list-style: none;
user-select: none;
transition: color .15s ease;
}
.hp-faq__question::-webkit-details-marker { display: none; }
.hp-faq__item[open] .hp-faq__question {
color: var(--color-primary, #0066cc);
}
.hp-faq__chevron {
flex-shrink: 0;
font-size: 18px;
color: var(--color-text-muted, #858585);
transition: transform .25s ease;
}
.hp-faq__item[open] .hp-faq__chevron {
transform: rotate(180deg);
}
.hp-faq__answer {
padding: 0 20px 18px;
}
.hp-faq__answer p {
font-size: 15px;
line-height: 1.6;
color: var(--color-text-secondary, #5a5a5a);
margin: 0;
text-align: left;
}
.hp-faq__cta {
text-align: center;
} .hp-final-cta {
background: var(--color-primary, #0066cc);
text-align: center;
}
.hp-final-cta .hp-section-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.hp-final-cta__heading {
font-size: clamp(24px, 3vw, 36px);
font-weight: var(--font-weight-bold, 700);
color: #fff;
margin: 0;
line-height: 1.2;
}
.hp-final-cta__sub {
font-size: 18px;
color: rgba(255, 255, 255, .85);
margin: 0;
max-width: 48ch;
}
.hp-final-cta .hp-btn--primary {
background: #fff !important;
color: var(--color-primary, #0066cc);
box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}
.hp-final-cta .hp-btn--primary:hover {
background: rgba(255, 255, 255, .92);
color: var(--color-primary-hover, #004c99);
}
.hp-final-cta__subtext {
font-size: 13px;
color: rgba(255, 255, 255, .65);
margin: 0;
}   .hp-proof + .hp-benefits,
.hp-benefits + .hp-pricing,
.hp-pricing + .hp-how,
.hp-how + .hp-features,
.hp-features + .hp-faq {
border-top: 1px solid var(--color-border, #e5e5e5);
} .page-default {
padding: 60px 20px 80px 20px;
}
.page-container {
max-width: 860px;
margin: 0 auto;
} .about-intro {
margin-bottom: 60px;
}
.about-intro h1 {
font-size: 42px;
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: 20px;
}
.about-intro .intro-text {
font-size: 20px;
line-height: 1.7;
color: var(--color-text-secondary);
max-width: 100%;
}
.what-youll-find,
.story,
.mission {
margin-bottom: 60px;
}
.what-youll-find h2,
.story h2,
.mission h2 {
font-size: 30px;
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: 24px;
padding-bottom: 12px;
border-bottom: 2px solid var(--color-border);
}
.what-youll-find h3 {
font-size: 20px;
font-weight: 600;
color: var(--color-primary);
margin-bottom: 10px;
margin-top: 32px;
}
.what-youll-find p,
.story p,
.mission p {
font-size: 17px;
line-height: 1.8;
color: var(--color-text-secondary);
max-width: 100%;
margin-bottom: 16px;
} .team {
margin-bottom: 60px;
}
.team h2 {
font-size: 30px;
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: 32px;
padding-bottom: 12px;
border-bottom: 2px solid var(--color-border);
}
.team-member {
padding: 28px;
background: var(--color-bg-light);
border-radius: 10px;
margin-bottom: 20px;
}
.team-member h3 {
font-size: 20px;
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: 4px;
}
.team-member p {
font-size: 16px;
line-height: 1.7;
color: var(--color-text-secondary);
margin-bottom: 8px;
max-width: 100%;
} .contact-intro {
margin-bottom: 48px;
}
.contact-intro h1 {
font-size: 42px;
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: 16px;
}
.contact-intro p {
font-size: 18px;
color: var(--color-text-secondary);
max-width: 100%;
}
.contact-form {
margin-bottom: 48px;
}
.contact-form h2 {
font-size: 26px;
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: 24px;
}
.contact-form .form-note {
margin-top: 16px;
font-size: 14px;
color: #9ca3af;
max-width: 100%;
}
.contact-info h2 {
font-size: 26px;
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: 16px;
}
.contact-info p {
font-size: 16px;
line-height: 1.7;
color: var(--color-text-secondary);
max-width: 100%;
}
.contact-info a {
color: var(--color-primary);
} @media (max-width: 768px) {
.page-default {
padding: 40px 20px 60px 20px;
}
.about-intro h1,
.contact-intro h1 {
font-size: 32px;
}
.what-youll-find h2,
.story h2,
.team h2,
.mission h2 {
font-size: 24px;
}
} .page-legal {
padding: 60px 20px 80px 20px;
background: var(--color-bg-white);
}
.legal-container {
max-width: 720px;
margin: 0 auto;
} .legal-container h1 {
font-size: 36px;
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: 8px;
line-height: 1.2;
}
.legal-container h2 {
font-size: 22px;
font-weight: 700;
color: var(--color-text-primary);
margin-top: 48px;
margin-bottom: 16px;
padding-bottom: 10px;
border-bottom: 1px solid var(--color-border);
}
.legal-container h3 {
font-size: 17px;
font-weight: 600;
color: var(--color-text-secondary);
margin-top: 28px;
margin-bottom: 12px;
} .legal-container p {
font-size: 16px;
line-height: 1.8;
color: var(--color-text-secondary);
margin-bottom: 16px;
max-width: 100%;
} .legal-container em {
font-size: 14px;
color: #9ca3af;
} .legal-container ul,
.legal-container ol {
margin: 0 0 20px 0;
padding-left: 24px;
}
.legal-container li {
font-size: 16px;
line-height: 1.7;
color: var(--color-text-secondary);
margin-bottom: 8px;
} .legal-container a {
color: var(--color-primary);
text-decoration: underline;
}
.legal-container a:hover {
color: var(--color-primary-hover);
} .privacy-policy,
.terms,
.cancellation-policy { } @media (max-width: 768px) {
.page-legal {
padding: 40px 16px 60px 16px;
}
.legal-container h1 {
font-size: 28px;
}
.legal-container h2 {
font-size: 20px;
margin-top: 36px;
}
.legal-container h3 {
font-size: 16px;
}
.legal-container p,
.legal-container li {
font-size: 15px;
}
} /* ============================================