


:root {
--color-bg-primary:    #0a0a0a;
--color-bg-secondary:  #111111;
--color-bg-card:       #161616;
--color-bg-card-alt:   #1a1a1a;
--color-bg-footer:     #0d0d0d;
--color-gold-primary:  #c9a84c;
--color-gold-light:    #e2b96b;
--color-gold-dark:     #a07830;
--color-gold-muted:    rgba(201, 168, 76, 0.15);
--color-gold-border:   rgba(201, 168, 76, 0.25);
--color-text-primary:  #f0ede6;
--color-text-secondary:#b0a898;
--color-text-muted:    #6b6560;
--color-text-inverse:  #0a0a0a;
--color-border:        rgba(255, 255, 255, 0.07);
--color-border-gold:   rgba(201, 168, 76, 0.3);
--color-success:       #4caf7d;
--color-danger:        #e05252;
--font-display:        'Playfair Display', 'Vazirmatn', serif;
--font-body:           'Vazirmatn', 'Segoe UI', sans-serif;
--font-mono:           'JetBrains Mono', monospace;
--text-xs:    0.75rem;
--text-sm:    0.875rem;
--text-base:  1rem;
--text-md:    1.125rem;
--text-lg:    1.25rem;
--text-xl:    1.5rem;
--text-2xl:   1.875rem;
--text-3xl:   2.25rem;
--text-4xl:   3rem;
--text-5xl:   3.75rem;
--text-6xl:   4.5rem;
--weight-light:   300;
--weight-regular: 400;
--weight-medium:  500;
--weight-semibold:600;
--weight-bold:    700;
--weight-black:   900;
--leading-tight:  1.15;
--leading-snug:   1.35;
--leading-normal: 1.6;
--leading-loose:  1.85;
--space-1:   0.25rem;
--space-2:   0.5rem;
--space-3:   0.75rem;
--space-4:   1rem;
--space-5:   1.25rem;
--space-6:   1.5rem;
--space-8:   2rem;
--space-10:  2.5rem;
--space-12:  3rem;
--space-16:  4rem;
--space-20:  5rem;
--space-24:  6rem;
--space-32:  8rem;
--container-max:  1280px;
--container-pad:  clamp(1rem, 4vw, 2.5rem);
--section-py:     clamp(3rem, 7vw, 6rem);
--radius-sm:   6px;
--radius-md:   12px;
--radius-lg:   18px;
--radius-xl:   24px;
--radius-full: 9999px;
--shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
--shadow-md:   0 4px 20px rgba(0,0,0,0.5);
--shadow-lg:   0 8px 40px rgba(0,0,0,0.6);
--shadow-gold: 0 0 30px rgba(201,168,76,0.2);
--shadow-gold-sm: 0 0 12px rgba(201,168,76,0.15);
--transition-fast:   150ms ease;
--transition-base:   250ms ease;
--transition-slow:   400ms ease;
--transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
--z-base:    1;
--z-above:   10;
--z-overlay: 100;
--z-modal:   200;
--z-nav:     300;
--z-toast:   400;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
direction: rtl;
scroll-behavior: smooth;
font-size: 16px;
-webkit-text-size-adjust: 100%;
}
body {
direction: rtl;
font-family: var(--font-body);
font-size: var(--text-base);
font-weight: var(--weight-regular);
line-height: var(--leading-normal);
color: var(--color-text-primary);
background-color: var(--color-bg-primary);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-body);
font-weight: var(--weight-bold);
line-height: var(--leading-tight);
color: var(--color-text-primary);
}
p {
line-height: var(--leading-normal);
color: var(--color-text-secondary);
}
a {
color: inherit;
text-decoration: none;
transition: color var(--transition-base);
}
img {
max-width: 100%;
height: auto;
display: block;
}
ul, ol {
list-style: none;
}
button {
cursor: pointer;
border: none;
background: none;
font-family: inherit;
font-size: inherit;
}
input, textarea, select {
font-family: inherit;
font-size: inherit;
}
:focus-visible {
outline: 2px solid var(--color-gold-primary);
outline-offset: 3px;
border-radius: var(--radius-sm);
}
::selection {
background-color: var(--color-gold-primary);
color: var(--color-text-inverse);
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: var(--color-bg-secondary);
}
::-webkit-scrollbar-thumb {
background: var(--color-gold-dark);
border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
background: var(--color-gold-primary);
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
.container {
width: 100%;
max-width: var(--container-max);
margin-inline: auto;
padding-inline: var(--container-pad);
}
.section {
padding-block: var(--section-py);
}
.flex        { display: flex; }
.flex-col    { display: flex; flex-direction: column; }
.flex-wrap   { flex-wrap: wrap; }
.items-center{ align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2  { gap: var(--space-2); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }
.section-header {
display: flex;
flex-direction: column;
gap: var(--space-3);
margin-bottom: var(--space-12);
}
.section-header.center {
align-items: center;
text-align: center;
}
.section-eyebrow {
font-size: var(--text-sm);
font-weight: var(--weight-medium);
color: var(--color-gold-primary);
letter-spacing: 0.08em;
text-transform: uppercase;
}
.section-title {
font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
font-weight: var(--weight-bold);
color: var(--color-text-primary);
line-height: var(--leading-tight);
}
.section-desc {
font-size: var(--text-md);
color: var(--color-text-secondary);
max-width: 50ch;
line-height: var(--leading-loose);
}
.text-gold {
color: var(--color-gold-primary);
}
.divider {
width: 60px;
height: 3px;
background: linear-gradient(90deg, var(--color-gold-primary), transparent);
border-radius: var(--radius-full);
}
.card {
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-8);
transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}
.card:hover {
border-color: var(--color-border-gold);
box-shadow: var(--shadow-gold-sm);
transform: translateY(-2px);
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--space-2);
padding: var(--space-3) var(--space-6);
border-radius: var(--radius-md);
font-size: var(--text-sm);
font-weight: var(--weight-semibold);
letter-spacing: 0.02em;
transition: all var(--transition-base);
cursor: pointer;
white-space: nowrap;
border: 2px solid transparent;
}
.btn-primary {
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
color: #0a0a0a;
border-color: var(--color-gold-primary);
box-shadow: 0 2px 12px rgba(201,168,76,0.3);
}
.btn-primary:hover {
background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-primary));
transform: translateY(-1px);
box-shadow: 0 4px 20px rgba(201,168,76,0.45);
}
.btn-outline {
background: transparent;
color: var(--color-text-primary);
border-color: rgba(255,255,255,0.2);
}
.btn-outline:hover {
border-color: var(--color-gold-primary);
color: var(--color-gold-primary);
background: var(--color-gold-muted);
}
.btn-ghost {
background: transparent;
color: var(--color-gold-primary);
border-color: transparent;
padding-inline: var(--space-2);
}
.btn-ghost:hover {
color: var(--color-gold-light);
}
.btn-lg {
padding: var(--space-4) var(--space-8);
font-size: var(--text-base);
border-radius: var(--radius-lg);
}
.icon-box {
display: flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border-radius: var(--radius-md);
background: var(--color-gold-muted);
border: 1px solid var(--color-gold-border);
flex-shrink: 0;
font-size: 1.4rem;
}
.badge {
display: inline-flex;
align-items: center;
gap: var(--space-1);
padding: var(--space-1) var(--space-3);
border-radius: var(--radius-full);
font-size: var(--text-xs);
font-weight: var(--weight-semibold);
background: var(--color-gold-muted);
color: var(--color-gold-primary);
border: 1px solid var(--color-gold-border);
}
.check-list {
display: flex;
flex-direction: column;
gap: var(--space-3);
}
.check-list li {
display: flex;
align-items: center;
gap: var(--space-3);
font-size: var(--text-sm);
color: var(--color-text-secondary);
}
.check-list li::before {
content: '✓';
color: var(--color-gold-primary);
font-weight: var(--weight-bold);
font-size: var(--text-base);
flex-shrink: 0;
}
.check-list li.x::before {
content: '✗';
color: var(--color-text-muted);
}
.card-gold-border {
position: relative;
border-radius: var(--radius-lg);
background: var(--color-bg-card);
border: 1px solid var(--color-gold-border);
}
.tag {
display: inline-block;
padding: var(--space-1) var(--space-3);
border-radius: var(--radius-sm);
font-size: var(--text-xs);
background: var(--color-gold-muted);
color: var(--color-gold-primary);
}
.stat-number {
font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
font-weight: var(--weight-black);
color: var(--color-gold-primary);
line-height: 1;
}
.stat-label {
font-size: var(--text-sm);
color: var(--color-text-secondary);
margin-top: var(--space-1);
}
.hide-mobile { display: block; }
.show-mobile { display: none; }
@media (max-width: 768px) {
.hide-mobile { display: none; }
.show-mobile { display: block; }
}
.navbar {
position: fixed;
top: 0;
inset-inline: 0;
z-index: var(--z-nav);
background: rgba(10, 10, 10, 0.85);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid var(--color-border);
transition: background var(--transition-base), box-shadow var(--transition-base);
}
.navbar.scrolled {
background: rgba(10, 10, 10, 0.97);
box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.navbar__inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
gap: var(--space-8);
}
.navbar__logo {
display: flex;
align-items: center;
gap: var(--space-3);
flex-shrink: 0;
}
.logo-small {
width: 65px;
height: 65px;
}
.navbar__logo-icon {
width: 42px;
height: 42px;
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: var(--weight-black);
color: #0a0a0a;
}
.navbar__logo-text {
display: flex;
flex-direction: column;
line-height: 1;
}
.navbar__logo-en {
font-size: var(--text-lg);
font-weight: var(--weight-black);
color: var(--color-text-primary);
letter-spacing: 0.1em;
}
.navbar__logo-fa {
font-size: var(--text-xs);
color: var(--color-gold-primary);
font-weight: var(--weight-medium);
letter-spacing: 0.05em;
}
.navbar__nav {
display: flex;
align-items: center;
gap: var(--space-1);
flex: 1;
justify-content: center;
}
.navbar__link {
font-size: var(--text-sm);
font-weight: var(--weight-medium);
color: var(--color-text-secondary);
padding: var(--space-2) var(--space-3);
border-radius: var(--radius-sm);
transition: color var(--transition-base), background var(--transition-base);
position: relative;
white-space: nowrap;
}
.navbar__link:hover,
.navbar__link.active {
color: var(--color-gold-primary);
background: var(--color-gold-muted);
}
.navbar__link.active::after {
content: '';
position: absolute;
bottom: -1px;
inset-inline: var(--space-3);
height: 2px;
background: var(--color-gold-primary);
border-radius: var(--radius-full);
}
.navbar__cta {
display: flex;
align-items: center;
gap: var(--space-3);
flex-shrink: 0;
}
.navbar__phone {
display: flex;
align-items: center;
gap: var(--space-2);
padding: var(--space-2) var(--space-4);
border-radius: var(--radius-md);
border: 1px solid var(--color-gold-border);
font-size: var(--text-sm);
font-weight: var(--weight-semibold);
color: var(--color-gold-primary);
transition: all var(--transition-base);
direction: ltr;
}
.navbar__phone:hover {
background: var(--color-gold-muted);
border-color: var(--color-gold-primary);
box-shadow: var(--shadow-gold-sm);
}
.navbar__toggle {
display: none;
flex-direction: column;
gap: 5px;
padding: var(--space-2);
cursor: pointer;
}
.navbar__toggle span {
display: block;
width: 24px;
height: 2px;
background: var(--color-text-primary);
border-radius: var(--radius-full);
transition: all var(--transition-base);
}
.navbar__toggle.open span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.open span:nth-child(2) {
opacity: 0;
transform: scaleX(0);
}
.navbar__toggle.open span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.navbar__mobile-menu {
display: none;
position: fixed;
inset: 72px 0 0;
background: rgba(10,10,10,0.98);
backdrop-filter: blur(20px);
flex-direction: column;
padding: var(--space-8) var(--container-pad);
gap: var(--space-2);
overflow-y: auto;
border-top: 1px solid var(--color-border);
z-index: calc(var(--z-nav) - 1);
}
.navbar__mobile-menu.open {
display: flex;
}
.navbar__mobile-link {
display: block;
font-size: var(--text-md);
font-weight: var(--weight-medium);
color: var(--color-text-secondary);
padding: var(--space-4) var(--space-4);
border-radius: var(--radius-md);
border-bottom: 1px solid var(--color-border);
transition: color var(--transition-base), background var(--transition-base);
}
.navbar__mobile-link:hover {
color: var(--color-gold-primary);
background: var(--color-gold-muted);
}
.navbar__mobile-phone {
margin-top: var(--space-4);
display: flex;
align-items: center;
justify-content: center;
gap: var(--space-2);
padding: var(--space-4);
border-radius: var(--radius-lg);
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
color: #0a0a0a;
font-weight: var(--weight-bold);
font-size: var(--text-lg);
direction: ltr;
}
@media (max-width: 1024px) {
.navbar__nav { display: none; }
.navbar__cta { display: none; }
.navbar__toggle { display: flex; }
}
.hero {
min-height: 100svh;
padding-top: 72px;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
var(--color-bg-primary);
}
.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='%23c9a84c' fill-opacity='0.025'%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");
pointer-events: none;
opacity: 0.5;
}
.hero__inner {
display: flex;
align-items: center;
gap: var(--space-16);
width: 100%;
padding-block: var(--space-20);
}
.hero__visual {
flex: 0 0 48%;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.hero__glow-ring {
position: absolute;
width: 420px;
height: 420px;
border-radius: 50%;
background: conic-gradient(from 0deg, transparent 30%, rgba(201,168,76,0.15) 50%, transparent 70%);
animation: spin-slow 12s linear infinite;
}
.hero__glow-ring::after {
content: '';
position: absolute;
inset: 20px;
border-radius: 50%;
border: 1px solid rgba(201,168,76,0.2);
}
.hero__product-img {
position: relative;
z-index: var(--z-above);
max-width: 380px;
width: 100%;
animation: float 4s ease-in-out infinite;
}
.hero__product-img img {
width: 100%;
height: auto;
}
.hero__product-placeholder {
width: 430px;
height: auto;
border-radius: var(--radius-xl);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: var(--space-4);
position: relative;
overflow: hidden;
}
.hero__product-placeholder::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
animation: spin-slow 8s linear infinite;
}
.hero__lock-icon {
font-size: 6rem;
position: relative;
z-index: 1;
}
.hero__brand-badge {
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
color: #0a0a0a;
font-weight: var(--weight-black);
font-size: var(--text-xl);
letter-spacing: 0.15em;
padding: var(--space-2) var(--space-6);
border-radius: var(--radius-sm);
position: relative;
z-index: 1;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50%       { transform: translateY(-12px); }
}
.hero__content {
flex: 1;
display: flex;
flex-direction: column;
gap: var(--space-6);
text-align: right;
}
.hero__eyebrow {
display: inline-flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
font-weight: var(--weight-medium);
color: var(--color-gold-primary);
letter-spacing: 0.06em;
}
.hero__eyebrow::before {
content: '';
width: 30px;
height: 1px;
background: var(--color-gold-primary);
}
.hero__title {
font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
font-weight: var(--weight-black);
line-height: var(--leading-tight);
color: var(--color-text-primary);
}
.hero__title .brand-name {
display: block;
color: var(--color-gold-primary);
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.15em;
}
.hero__desc {
font-size: var(--text-md);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
max-width: 45ch;
}
.hero__actions {
display: flex;
gap: var(--space-4);
flex-wrap: wrap;
}
.features-strip {
background: var(--color-bg-card);
border-block: 1px solid var(--color-border);
padding-block: var(--space-8);
}
.features-strip__grid {
display: flex;
gap: var(--space-2);
}
.feature-item {
flex: 1;
display: flex;
align-items: center;
gap: var(--space-4);
padding: var(--space-5);
border-radius: var(--radius-md);
border: 1px solid transparent;
transition: all var(--transition-base);
}
.feature-item:not(:last-child) {
border-left: 1px solid var(--color-border);
}
.feature-item:hover {
background: var(--color-bg-card-alt);
border-color: var(--color-gold-border);
}
.feature-item__body {
text-align: right;
}
.feature-item__title {
font-size: var(--text-base);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
margin-bottom: var(--space-1);
}
.feature-item__desc {
font-size: var(--text-sm);
color: var(--color-text-secondary);
line-height: var(--leading-snug);
}
.stats {
background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-secondary) 100%);
border-block: 1px solid var(--color-border);
padding-block: var(--space-12);
}
.stats__grid {
display: flex;
gap: var(--space-4);
}
.stat-card {
flex: 1;
display: flex;
align-items: center;
gap: var(--space-4);
padding: var(--space-6);
border-radius: var(--radius-lg);
background: var(--color-bg-card-alt);
border: 1px solid var(--color-border);
transition: all var(--transition-base);
}
.stat-card:hover {
border-color: var(--color-gold-border);
box-shadow: var(--shadow-gold-sm);
transform: translateY(-3px);
}
.stat-card__icon {
width: 56px;
height: 56px;
background: var(--color-gold-muted);
border: 1px solid var(--color-gold-border);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
flex-shrink: 0;
}
.stat-card__content {
text-align: right;
}
.stat-card__number {
font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
font-weight: var(--weight-black);
color: var(--color-gold-primary);
line-height: 1;
direction: ltr;
display: inline-block;
}
.stat-card__title {
font-size: var(--text-sm);
font-weight: var(--weight-semibold);
color: var(--color-text-primary);
margin-top: var(--space-1);
}
.stat-card__desc {
font-size: var(--text-xs);
color: var(--color-text-muted);
margin-top: var(--space-1);
}
.intro-video {
background: var(--color-bg-secondary);
border-radius: var(--radius-xl);
overflow: hidden;
border: 1px solid var(--color-border);
margin-block: var(--space-4);
}
.intro-video__inner {
display: flex;
align-items: center;
gap: 0;
min-height: 340px;
}
.intro-video__player {
flex: 0 0 45%;
position: relative;
background: #000;
aspect-ratio: 16/9;
overflow: hidden;
}
.intro-video__thumbnail {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0d0d0d 100%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: var(--space-4);
position: relative;
}
.intro-video__thumbnail::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.intro-video__watermark {
font-size: var(--text-2xl);
font-weight: var(--weight-black);
color: rgba(201,168,76,0.15);
letter-spacing: 0.2em;
}
.play-btn {
width: 72px;
height: 72px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: #0a0a0a;
cursor: pointer;
transition: transform var(--transition-bounce), box-shadow var(--transition-base);
position: relative;
z-index: 1;
border: none;
}
.play-btn:hover {
transform: scale(1.1);
box-shadow: 0 0 40px rgba(201,168,76,0.5);
}
.play-btn::before {
content: '';
position: absolute;
inset: -8px;
border-radius: 50%;
border: 1px solid rgba(201,168,76,0.3);
animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
0%   { transform: scale(1); opacity: 1; }
100% { transform: scale(1.4); opacity: 0; }
}
.intro-video__content {
flex: 1;
padding: var(--space-12);
text-align: right;
display: flex;
flex-direction: column;
gap: var(--space-5);
}
.intro-video__eyebrow {
font-size: var(--text-sm);
color: var(--color-gold-primary);
font-weight: var(--weight-medium);
letter-spacing: 0.06em;
}
.intro-video__title {
font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
font-weight: var(--weight-bold);
color: var(--color-text-primary);
line-height: var(--leading-snug);
}
.intro-video__desc {
font-size: var(--text-sm);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
}
.comparison {
background: var(--color-bg-primary);
}
.comparison__inner {
display: flex;
align-items: flex-start;
gap: var(--space-16);
}
.comparison__copy {
flex: 0 0 35%;
display: flex;
flex-direction: column;
gap: var(--space-6);
text-align: right;
}
.comparison__eyebrow {
font-size: var(--text-sm);
color: var(--color-gold-primary);
font-weight: var(--weight-medium);
letter-spacing: 0.06em;
}
.comparison__title {
font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
font-weight: var(--weight-bold);
color: var(--color-text-primary);
line-height: var(--leading-snug);
}
.comparison__desc {
font-size: var(--text-sm);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
}
.comparison__table-wrap {
flex: 1;
overflow-x: auto;
}
.comparison__table {
width: 100%;
border-collapse: collapse;
border-radius: var(--radius-lg);
overflow: hidden;
}
.comparison__table thead tr th {
padding: var(--space-4) var(--space-5);
font-size: var(--text-sm);
font-weight: var(--weight-semibold);
text-align: center;
border-bottom: 1px solid var(--color-border);
}
.comparison__table thead tr th:first-child {
text-align: right;
background: transparent;
}
.comparison__table thead tr th.col-malock {
background: var(--color-gold-primary);
color: #0a0a0a;
border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.comparison__table thead tr th.col-rival {
background: var(--color-bg-card);
color: var(--color-text-muted);
}
.comparison__table tbody tr td {
padding: var(--space-4) var(--space-5);
border-bottom: 1px solid var(--color-border);
text-align: center;
font-size: var(--text-sm);
background: var(--color-bg-card);
}
.comparison__table tbody tr td:first-child {
text-align: right;
color: var(--color-text-secondary);
background: var(--color-bg-secondary);
padding-right: var(--space-5);
}
.comparison__table tbody tr td.col-malock {
background: rgba(201,168,76,0.05);
color: var(--color-gold-primary);
font-weight: var(--weight-bold);
font-size: var(--text-lg);
}
.comparison__table tbody tr:last-child td { border-bottom: none; }
.check-icon { color: var(--color-gold-primary); font-size: 1.1rem; }
.cross-icon { color: var(--color-text-muted); font-size: 1.1rem; }
.how-it-works {
background: var(--color-bg-secondary);
border-block: 1px solid var(--color-border);
}
.steps__grid {
display: flex;
gap: var(--space-4);
position: relative;
}
.steps__grid::before {
content: '';
position: absolute;
top: 36px;
right: calc(36px + var(--space-4));
left: calc(36px + var(--space-4));
height: 1px;
background: linear-gradient(90deg, transparent, var(--color-gold-border), var(--color-gold-border), transparent);
pointer-events: none;
}
.step-card {
flex: 1;
display: flex;
flex-direction: column;
gap: var(--space-4);
padding: var(--space-6);
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
text-align: right;
transition: all var(--transition-base);
position: relative;
}
.step-card:hover {
border-color: var(--color-gold-border);
box-shadow: var(--shadow-gold-sm);
transform: translateY(-3px);
}
.step-card__num {
width: 48px;
height: 48px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
color: #0a0a0a;
font-weight: var(--weight-black);
font-size: var(--text-lg);
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
flex-shrink: 0;
}
.step-card__icon {
font-size: 1.8rem;
}
.step-card__title {
font-size: var(--text-base);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
}
.step-card__desc {
font-size: var(--text-sm);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
}
.step-card__arrow {
position: absolute;
top: 50%;
left: calc(-1 * var(--space-4) - 10px);
transform: translateY(-50%);
color: var(--color-gold-border);
font-size: var(--text-lg);
}
.warranty {
background: var(--color-bg-primary);
padding-block: var(--space-16);
}
.warranty__inner {
display: flex;
align-items: center;
gap: var(--space-12);
padding: var(--space-12) var(--space-16);
background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-card-alt) 100%);
border: 1px solid var(--color-gold-border);
border-radius: var(--radius-xl);
position: relative;
overflow: hidden;
}
.warranty__inner::before {
content: '';
position: absolute;
top: -80px;
left: -80px;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
pointer-events: none;
}
.warranty__badges {
display: flex;
align-items: center;
gap: var(--space-6);
flex-shrink: 0;
}
.cert-badge {
display: flex;
align-items: center;
justify-content: center;
padding: var(--space-2) var(--space-4);
border: 1px solid var(--color-gold-border);
border-radius: var(--radius-md);
font-size: var(--text-lg);
font-weight: var(--weight-black);
color: var(--color-text-muted);
background: var(--color-bg-secondary);
transition: all var(--transition-base);
}
.cert-badge:hover {
color: var(--color-gold-primary);
border-color: var(--color-gold-primary);
background: var(--color-gold-muted);
}
.warranty__content {
flex: 1;
text-align: right;
}
.warranty__title {
font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
font-weight: var(--weight-bold);
color: var(--color-text-primary);
margin-bottom: var(--space-4);
}
.warranty__desc {
font-size: var(--text-base);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
}
.warranty__medal {
flex-shrink: 0;
width: 120px;
height: 120px;
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 0 40px rgba(201,168,76,0.35);
color: #0a0a0a;
line-height: 1;
}
.warranty__medal-num {
font-size: var(--text-3xl);
font-weight: var(--weight-black);
}
.warranty__medal-label {
font-size: var(--text-xs);
font-weight: var(--weight-semibold);
margin-top: 2px;
}
.blog {
background: var(--color-bg-secondary);
border-top: 1px solid var(--color-border);
}
.blog__header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: var(--space-12);
}
.blog__grid {
display: flex;
gap: var(--space-6);
}
.blog-card {
flex: 1;
display: flex;
flex-direction: column;
border-radius: var(--radius-lg);
overflow: hidden;
background: var(--color-bg-card);
border: 1px solid var(--color-border);
transition: all var(--transition-base);
}
.blog-card:hover {
border-color: var(--color-gold-border);
box-shadow: var(--shadow-gold-sm);
transform: translateY(-3px);
}
.blog-card__image {
height: 180px;
background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
position: relative;
overflow: hidden;
}
.blog-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.blog-card__body {
padding: var(--space-6);
display: flex;
flex-direction: column;
gap: var(--space-3);
text-align: right;
flex: 1;
}
.blog-card__date {
font-size: var(--text-xs);
color: var(--color-text-muted);
display: flex;
align-items: center;
gap: var(--space-1);
}
.blog-card__title {
font-size: var(--text-base);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
line-height: var(--leading-snug);
transition: color var(--transition-base);
}
.blog-card:hover .blog-card__title {
color: var(--color-gold-primary);
}
.cta-banner {
background: linear-gradient(135deg, #0d0d0d 0%, #1a1500 50%, #0d0d0d 100%);
border-block: 1px solid var(--color-gold-border);
padding-block: var(--space-12);
}
.cta-banner__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-8);
flex-wrap: wrap;
}
.cta-banner__content {
text-align: right;
}
.cta-banner__title {
font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
font-weight: var(--weight-bold);
color: var(--color-text-primary);
margin-bottom: var(--space-2);
}
.cta-banner__desc {
font-size: var(--text-sm);
color: var(--color-text-secondary);
}
.cta-banner__actions {
display: flex;
gap: var(--space-4);
align-items: center;
flex-shrink: 0;
flex-wrap: wrap;
}
.footer {
background: var(--color-bg-footer);
border-top: 1px solid var(--color-border);
padding-block: var(--space-16) var(--space-8);
}
.footer__top {
display: flex;
gap: var(--space-12);
padding-bottom: var(--space-12);
border-bottom: 1px solid var(--color-border);
}
.footer__brand {
flex: 0 0 280px;
display: flex;
flex-direction: column;
gap: var(--space-4);
text-align: right;
}
.footer__logo {
display: flex;
align-items: center;
gap: var(--space-3);
}
.footer__logo-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-weight: var(--weight-black);
font-size: 1.1rem;
color: #0a0a0a;
}
.footer__brand-name {
font-size: var(--text-xl);
font-weight: var(--weight-black);
color: var(--color-text-primary);
letter-spacing: 0.1em;
}
.footer__tagline {
font-size: var(--text-sm);
color: var(--color-text-muted);
line-height: var(--leading-loose);
}
.footer__trust-seals {
display: flex;
gap: var(--space-3);
margin-top: var(--space-4);
}
.trust-seal {
width: 56px;
height: 56px;
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: var(--text-xs);
color: var(--color-text-muted);
text-align: center;
font-weight: var(--weight-bold);
transition: all var(--transition-base);
}
.trust-seal:hover {
border-color: var(--color-gold-border);
color: var(--color-gold-primary);
}
.footer__cols {
flex: 1;
display: flex;
gap: var(--space-8);
}
.footer__col {
flex: 1;
text-align: right;
}
.footer__col-title {
font-size: var(--text-sm);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
margin-bottom: var(--space-5);
padding-bottom: var(--space-3);
border-bottom: 1px solid var(--color-border);
}
.footer__links {
display: flex;
flex-direction: column;
gap: var(--space-3);
}
.footer__link {
font-size: var(--text-sm);
color: var(--color-text-muted);
transition: color var(--transition-base);
display: inline-flex;
align-items: center;
gap: var(--space-2);
}
.footer__link:hover {
color: var(--color-gold-primary);
}
.footer__contact-item {
display: flex;
align-items: center;
gap: var(--space-3);
font-size: var(--text-sm);
color: var(--color-text-muted);
margin-bottom: var(--space-3);
justify-content: flex-end;
}
.footer__contact-item a {
color: var(--color-text-muted);
transition: color var(--transition-base);
direction: ltr;
}
.footer__contact-item a:hover {
color: var(--color-gold-primary);
}
.footer__bottom {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: var(--space-8);
gap: var(--space-4);
flex-wrap: wrap;
}
.footer__copy {
font-size: var(--text-xs);
color: var(--color-text-muted);
text-align: right;
}
.footer__socials {
display: flex;
gap: var(--space-3);
}
.social-link {
width: 36px;
height: 36px;
border-radius: var(--radius-md);
background: var(--color-bg-card);
border: 1px solid var(--color-border);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
color: var(--color-text-muted);
transition: all var(--transition-base);
}
.social-link:hover {
background: var(--color-gold-muted);
border-color: var(--color-gold-primary);
color: var(--color-gold-primary);
transform: translateY(-2px);
}
@media (max-width: 1024px) {
.hero__inner {
flex-direction: column-reverse;
gap: var(--space-10);
padding-top: var(--space-12);
}
.hero__content { text-align: center; align-items: center; }
.hero__desc { margin-inline: auto; }
.hero__actions { justify-content: center; }
.hero__eyebrow { justify-content: center; }
.hero__eyebrow::before { display: none; }
.features-strip__grid {
flex-wrap: wrap;
}
.feature-item {
flex: 1 1 calc(50% - var(--space-2));
}
.stats__grid { flex-wrap: wrap; }
.stat-card  { flex: 1 1 calc(50% - var(--space-2)); }
.intro-video__inner {
flex-direction: column;
}
.intro-video__player { flex: 0 0 auto; width: 100%; aspect-ratio: 16/9; }
.intro-video__content { padding: var(--space-8); }
.comparison__inner { flex-direction: column; gap: var(--space-8); }
.comparison__copy  { flex: 0 0 auto; }
.steps__grid { flex-wrap: wrap; }
.steps__grid::before { display: none; }
.step-card { flex: 1 1 calc(50% - var(--space-2)); }
.step-card__arrow { display: none; }
.warranty__inner {
padding: var(--space-8);
gap: var(--space-6);
}
.blog__grid { flex-wrap: wrap; }
.blog-card  { flex: 1 1 calc(50% - var(--space-3)); }
.footer__top { flex-direction: column; }
.footer__brand { flex: 0 0 auto; }
.footer__cols  { flex-wrap: wrap; }
.footer__col   { flex: 1 1 calc(50% - var(--space-4)); }
}
@media (max-width: 767px) {
.hero__glow-ring { width: 280px; height: 280px; }
.hero__product-placeholder { width: 240px; height: 320px; }
.features-strip__grid { flex-direction: column; }
.feature-item:not(:last-child) { border-left: none; border-bottom: 1px solid var(--color-border); }
.stats__grid { flex-direction: column; }
.step-card { flex: 0 0 100%; }
.blog__grid      { flex-direction: column; }
.blog__header    { flex-direction: column; align-items: flex-end; gap: var(--space-4); }
.warranty__inner { flex-direction: column; text-align: center; align-items: center; }
.warranty__content { text-align: center; }
.warranty__badges  { flex-wrap: wrap; justify-content: center; }
.cta-banner__inner { flex-direction: column; text-align: center; align-items: center; }
.cta-banner__content { text-align: center; }
.footer__cols  { flex-direction: column; }
.footer__bottom { flex-direction: column-reverse; align-items: center; }
.comparison__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
.page-hero {
padding-top: calc(72px + var(--space-16));
padding-bottom: var(--space-16);
position: relative;
overflow: hidden;
background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 70%),
var(--color-bg-primary);
border-bottom: 1px solid var(--color-border);
}
.page-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='%23c9a84c' fill-opacity='0.025'%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");
pointer-events: none;
opacity: 0.5;
}
.breadcrumb {
display: flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--color-text-muted);
margin-bottom: var(--space-6);
position: relative;
z-index: 1;
}
.breadcrumb a {
color: var(--color-text-muted);
transition: color var(--transition-base);
}
.breadcrumb a:hover {
color: var(--color-gold-primary);
}
.breadcrumb .sep {
color: var(--color-text-muted);
opacity: 0.5;
}
.breadcrumb .current {
color: var(--color-gold-primary);
font-weight: var(--weight-medium);
}
.page-hero__inner {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--space-6);
text-align: right;
max-width: 780px;
margin-inline-start: auto;
}
.page-hero__title {
font-size: clamp(var(--text-3xl), 5.5vw, var(--text-5xl));
font-weight: var(--weight-black);
line-height: var(--leading-tight);
color: var(--color-text-primary);
}
.page-hero__title .text-gold {
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.page-hero__desc {
font-size: var(--text-md);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
max-width: 60ch;
}
.page-hero__quickstats {
display: flex;
gap: var(--space-8);
margin-top: var(--space-4);
flex-wrap: wrap;
justify-content: flex-end;
}
.page-hero__quickstat {
text-align: center;
}
.story {
background: var(--color-bg-primary);
}
.story__inner {
display: flex;
align-items: center;
gap: var(--space-16);
}
.story__visual {
flex: 0 0 42%;
position: relative;
}
.story__frame {
position: relative;
width: 100%;
aspect-ratio: 4/5;
border-radius: var(--radius-xl);
background: linear-gradient(160deg, var(--color-bg-card) 0%, var(--color-bg-card-alt) 60%, var(--color-bg-secondary) 100%);
border: 1px solid var(--color-gold-border);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.story__frame img {
width: 100%;
height: 100%;
object-fit: cover;
}
.story__frame-emblem {
font-size: 5rem;
color: var(--color-gold-primary);
opacity: 0.85;
}
.story__badge-float {
position: absolute;
bottom: var(--space-6);
left: calc(-1 * var(--space-8));
display: flex;
align-items: center;
gap: var(--space-4);
padding: var(--space-5) var(--space-6);
background: var(--color-bg-card);
border: 1px solid var(--color-gold-border);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
}
.story__badge-float .stat-number { font-size: var(--text-3xl); }
.story__content {
flex: 1;
display: flex;
flex-direction: column;
gap: var(--space-6);
text-align: right;
}
.story__paragraphs {
display: flex;
flex-direction: column;
gap: var(--space-4);
}
.story__paragraphs p {
font-size: var(--text-base);
line-height: var(--leading-loose);
}
.differentiators {
background: var(--color-bg-secondary);
border-block: 1px solid var(--color-border);
}
.differentiators__intro {
max-width: 780px;
text-align: right;
margin-bottom: var(--space-12);
}
.differentiators__intro p {
font-size: var(--text-md);
line-height: var(--leading-loose);
}
.differentiators__grid {
display: flex;
flex-wrap: wrap;
gap: var(--space-6);
}
.diff-card {
flex: 1 1 calc(33.333% - var(--space-6));
min-width: 260px;
display: flex;
flex-direction: column;
gap: var(--space-4);
text-align: right;
}
.diff-card__head {
display: flex;
align-items: center;
gap: var(--space-4);
}
.diff-card__title {
font-size: var(--text-md);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
}
.diff-card__desc {
font-size: var(--text-sm);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
}
.mv {
background: var(--color-bg-primary);
}
.mv__grid {
display: flex;
gap: var(--space-6);
}
.mv-card {
flex: 1;
padding: var(--space-10);
text-align: right;
display: flex;
flex-direction: column;
gap: var(--space-4);
}
.mv-card .icon-box {
width: 60px;
height: 60px;
font-size: 1.7rem;
}
.mv-card__title {
font-size: var(--text-lg);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
}
.mv-card__desc {
font-size: var(--text-sm);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
}
.timeline {
background: var(--color-bg-secondary);
border-block: 1px solid var(--color-border);
}
.timeline__track {
display: flex;
flex-direction: column;
gap: 0;
}
.timeline__item {
display: flex;
gap: var(--space-8);
position: relative;
padding-bottom: var(--space-12);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__rail {
display: flex;
flex-direction: column;
align-items: center;
flex-shrink: 0;
}
.timeline__dot {
width: 44px;
height: 44px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
color: #0a0a0a;
font-weight: var(--weight-black);
font-size: var(--text-sm);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
direction: ltr;
}
.timeline__line {
flex: 1;
width: 1px;
background: linear-gradient(180deg, var(--color-gold-border), transparent);
margin-block: var(--space-2);
}
.timeline__item:last-child .timeline__line { display: none; }
.timeline__body {
flex: 1;
text-align: right;
padding-top: var(--space-2);
}
.timeline__year {
font-size: var(--text-sm);
color: var(--color-gold-primary);
font-weight: var(--weight-semibold);
margin-bottom: var(--space-1);
direction: ltr;
display: inline-block;
}
.timeline__title {
font-size: var(--text-md);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
margin-bottom: var(--space-2);
}
.timeline__desc {
font-size: var(--text-sm);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
max-width: 65ch;
}
@media (max-width: 1024px) {
.page-hero__inner { align-items: center; text-align: center; margin-inline: auto; }
.page-hero__quickstats { justify-content: center; }
.breadcrumb { justify-content: center; }
.story__inner { flex-direction: column; }
.story__visual { flex: 0 0 auto; width: 100%; max-width: 420px; }
.story__content { text-align: center; align-items: center; }
.story__badge-float { left: 50%; transform: translateX(-50%); }
.differentiators__intro { text-align: center; margin-inline: auto; }
.diff-card { flex: 1 1 calc(50% - var(--space-6)); text-align: center; }
.diff-card__head { justify-content: center; }
.mv__grid { flex-direction: column; }
.timeline__item { gap: var(--space-5); }
}
@media (max-width: 767px) {
.diff-card { flex: 1 1 100%; }
.story__badge-float { position: static; transform: none; margin-top: var(--space-6); }
}
.product-hero {
padding-top: calc(72px + var(--space-12));
padding-bottom: var(--space-16);
position: relative;
overflow: hidden;
background: radial-gradient(ellipse 65% 55% at 15% 30%, rgba(201,168,76,0.07) 0%, transparent 70%),
var(--color-bg-primary);
border-bottom: 1px solid var(--color-border);
}
.product-hero__inner {
display: flex;
align-items: center;
gap: var(--space-16);
}
.product-hero__visual {
flex: 0 0 44%;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.product-hero__frame {
position: relative;
width: 100%;
max-width: 400px;
border-radius: var(--radius-xl);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.product-hero__frame img {
width: 100%;
height: 100%;
object-fit: cover;
}
.product-hero__frame-emblem {
font-size: 6rem;
color: var(--color-gold-primary);
opacity: 0.9;
}
.product-hero__thumbs {
display: flex;
gap: var(--space-3);
justify-content: center;
margin-top: var(--space-5);
}
.product-hero__thumb {
width: 64px;
height: 64px;
border-radius: var(--radius-md);
background: var(--color-bg-card);
border: 1px solid var(--color-border);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
cursor: pointer;
transition: all var(--transition-base);
flex-shrink: 0;
}
.product-hero__thumb.active,
.product-hero__thumb:hover {
border-color: var(--color-gold-primary);
background: var(--color-gold-muted);
}
.product-hero__content {
flex: 1;
display: flex;
flex-direction: column;
gap: var(--space-5);
text-align: right;
}
.product-hero__badges {
display: flex;
gap: var(--space-2);
flex-wrap: wrap;
}
.product-hero__title {
font-size: clamp(var(--text-2xl), 4.5vw, var(--text-4xl));
font-weight: var(--weight-black);
line-height: var(--leading-tight);
color: var(--color-text-primary);
}
.product-hero__subtitle {
font-size: var(--text-md);
color: var(--color-gold-primary);
font-weight: var(--weight-medium);
}
.product-hero__desc {
font-size: var(--text-base);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
max-width: 55ch;
}
.product-hero__highlights {
display: flex;
flex-wrap: wrap;
gap: var(--space-3);
}
.highlight-pill {
display: flex;
align-items: center;
gap: var(--space-2);
padding: var(--space-2) var(--space-4);
border-radius: var(--radius-full);
background: var(--color-bg-card);
border: 1px solid var(--color-border);
font-size: var(--text-sm);
color: var(--color-text-secondary);
}
.highlight-pill span.ico {
color: var(--color-gold-primary);
}
.product-hero__actions {
display: flex;
gap: var(--space-4);
flex-wrap: wrap;
}
.product-hero__meta {
display: flex;
gap: var(--space-6);
padding-top: var(--space-4);
border-top: 1px solid var(--color-border);
flex-wrap: wrap;
}
.product-hero__meta-item {
display: flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--color-text-muted);
}
.product-hero__meta-item span.ico {
color: var(--color-gold-primary);
font-size: 1rem;
}
.feature-grid-section {
background: var(--color-bg-secondary);
border-block: 1px solid var(--color-border);
}
.feature-grid {
display: flex;
flex-wrap: wrap;
gap: var(--space-4);
}
.feature-tile {
flex: 1 1 calc(33.333% - var(--space-4));
min-width: 260px;
display: flex;
align-items: flex-start;
gap: var(--space-4);
padding: var(--space-5);
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
text-align: right;
transition: all var(--transition-base);
}
.feature-tile:hover {
border-color: var(--color-gold-border);
box-shadow: var(--shadow-gold-sm);
transform: translateY(-2px);
}
.feature-tile__num {
flex-shrink: 0;
width: 34px;
height: 34px;
border-radius: 50%;
background: var(--color-gold-muted);
border: 1px solid var(--color-gold-border);
color: var(--color-gold-primary);
font-weight: var(--weight-bold);
font-size: var(--text-sm);
display: flex;
align-items: center;
justify-content: center;
direction: ltr;
}
.feature-tile__text {
font-size: var(--text-sm);
color: var(--color-text-secondary);
line-height: var(--leading-snug);
}
.specs {
background: var(--color-bg-primary);
}
.specs__inner {
display: flex;
gap: var(--space-16);
align-items: flex-start;
}
.specs__copy {
flex: 0 0 32%;
text-align: right;
display: flex;
flex-direction: column;
gap: var(--space-5);
position: sticky;
top: 100px;
}
.specs__table-wrap {
flex: 1;
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
overflow: hidden;
}
.specs__table {
width: 100%;
border-collapse: collapse;
}
.specs__table tr {
border-bottom: 1px solid var(--color-border);
}
.specs__table tr:last-child {
border-bottom: none;
}
.specs__table tr:hover {
background: var(--color-bg-card-alt);
}
.specs__table td {
padding: var(--space-4) var(--space-6);
font-size: var(--text-sm);
}
.specs__table td:first-child {
color: var(--color-text-muted);
font-weight: var(--weight-medium);
white-space: nowrap;
width: 40%;
border-left: 1px solid var(--color-border);
text-align: right;
}
.specs__table td:last-child {
color: var(--color-text-primary);
font-weight: var(--weight-semibold);
text-align: right;
}
.faq {
background: var(--color-bg-secondary);
border-block: 1px solid var(--color-border);
}
.faq__list {
max-width: 820px;
margin-inline: auto;
display: flex;
flex-direction: column;
gap: var(--space-3);
}
.faq-item {
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
overflow: hidden;
transition: border-color var(--transition-base);
}
.faq-item:hover {
border-color: var(--color-gold-border);
}
.faq-item__q {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-4);
padding: var(--space-5) var(--space-6);
cursor: pointer;
font-size: var(--text-base);
font-weight: var(--weight-semibold);
color: var(--color-text-primary);
text-align: right;
}
.faq-item__q .plus {
color: var(--color-gold-primary);
font-size: var(--text-lg);
flex-shrink: 0;
transition: transform var(--transition-base);
}
.faq-item.open .faq-item__q .plus {
transform: rotate(45deg);
}
.faq-item__a {
display: none;
padding: 0 var(--space-6) var(--space-5);
font-size: var(--text-sm);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
text-align: right;
}
.faq-item.open .faq-item__a {
display: block;
}
@media (max-width: 1024px) {
.product-hero__inner { flex-direction: column; gap: var(--space-10); }
.product-hero__content {
text-align: center; align-items: center;
}
.product-hero__desc,
.product-hero__highlights,
.product-hero__badges,
.product-hero__actions,
.product-hero__meta {
justify-content: center;
margin-inline: auto;
}
.feature-tile { flex: 1 1 calc(50% - var(--space-4)); }
.specs__inner { flex-direction: column; gap: var(--space-8); }
.specs__copy { position: static; flex: 0 0 auto; text-align: center; align-items: center; }
}
@media (max-width: 767px) {
.feature-tile { flex: 1 1 100%; }
.specs__table td { padding: var(--space-3) var(--space-4); }
}
.blog-hero {
padding-top: calc(72px + var(--space-16));
padding-bottom: var(--space-16);
position: relative;
overflow: hidden;
background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 70%),
var(--color-bg-primary);
border-bottom: 1px solid var(--color-border);
}
.blog-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='%23c9a84c' fill-opacity='0.025'%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");
pointer-events: none;
opacity: 0.5;
}
.breadcrumb {
display: flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--color-text-muted);
margin-bottom: var(--space-6);
position: relative;
z-index: 1;
}
.breadcrumb a {
color: var(--color-text-muted);
transition: color var(--transition-base);
}
.breadcrumb a:hover {
color: var(--color-gold-primary);
}
.breadcrumb .sep {
color: var(--color-text-muted);
opacity: 0.5;
}
.breadcrumb .current {
color: var(--color-gold-primary);
font-weight: var(--weight-medium);
}
.blog-hero__inner {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--space-4);
text-align: right;
max-width: 700px;
}
.blog-hero__title {
font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
font-weight: var(--weight-black);
line-height: var(--leading-tight);
color: var(--color-text-primary);
}
.blog-hero__title .text-gold {
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.blog-hero__desc {
font-size: var(--text-md);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
max-width: 55ch;
}
.blog-listing {
background: var(--color-bg-primary);
}
.blog-listing__grid {
display: flex;
flex-wrap: wrap;
gap: var(--space-8);
}
.blog-listing__grid .blog-card {
flex: 1 1 calc(33.333% - var(--space-8));
min-width: 280px;
}
.blog-listing__grid .blog-card__image {
height: 200px;
}
.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: var(--space-2);
margin-top: var(--space-16);
}
.pagination__item {
width: 42px;
height: 42px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: var(--text-sm);
font-weight: var(--weight-medium);
color: var(--color-text-secondary);
border: 1px solid var(--color-border);
background: var(--color-bg-card);
transition: all var(--transition-base);
}
.pagination__item:hover {
border-color: var(--color-gold-border);
color: var(--color-gold-primary);
}
.pagination__item.active {
background: var(--color-gold-primary);
border-color: var(--color-gold-primary);
color: #0a0a0a;
font-weight: var(--weight-bold);
}
.pagination__item.arrow {
font-size: var(--text-md);
}
@media (max-width: 1024px) {
.blog-hero__inner { align-items: center; text-align: center; margin-inline: auto; }
.breadcrumb { justify-content: center; }
.blog-listing__grid .blog-card {
flex: 1 1 calc(50% - var(--space-6));
}
}
@media (max-width: 767px) {
.blog-listing__grid .blog-card {
flex: 1 1 100%;
}
}
.article-hero {
padding-top: calc(72px + var(--space-16));
padding-bottom: var(--space-10);
position: relative;
overflow: hidden;
background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 70%),
var(--color-bg-primary);
}
.breadcrumb {
display: flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--color-text-muted);
margin-bottom: var(--space-6);
}
.breadcrumb a {
color: var(--color-text-muted);
transition: color var(--transition-base);
}
.breadcrumb a:hover {
color: var(--color-gold-primary);
}
.breadcrumb .sep {
color: var(--color-text-muted);
opacity: 0.5;
}
.breadcrumb .current {
color: var(--color-gold-primary);
font-weight: var(--weight-medium);
}
.article-hero__inner {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--space-5);
text-align: right;
max-width: 1050px;
margin-inline-start: auto;
}
.article-hero__title {
font-size: clamp(var(--text-2xl), 4.5vw, var(--text-4xl));
font-weight: var(--weight-black);
line-height: var(--leading-tight);
color: var(--color-text-primary);
}
.article-hero__meta {
display: flex;
align-items: center;
gap: var(--space-3);
font-size: var(--text-sm);
color: var(--color-text-muted);
flex-wrap: wrap;
}
.article-hero__meta-item {
display: flex;
align-items: center;
gap: var(--space-2);
}
.article-hero__meta-dot {
width: 4px;
height: 4px;
border-radius: 50%;
background: var(--color-text-muted);
flex-shrink: 0;
}
.article-cover-section {
background: var(--color-bg-primary);
padding-bottom: var(--space-12);
}
.article-cover {
max-width: 900px;
margin-inline: auto;
aspect-ratio: 21/9;
border-radius: var(--radius-xl);
border: 1px solid var(--color-gold-border);
background: linear-gradient(160deg, var(--color-bg-card) 0%, var(--color-bg-card-alt) 55%, var(--color-bg-secondary) 100%);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.article-cover img {
width: 100%;
height: 100%;
object-fit: cover;
}
.article-cover-emblem {
font-size: 4.5rem;
color: var(--color-gold-primary);
opacity: 0.85;
}
.article-body {
background: var(--color-bg-primary);
padding-bottom: var(--space-20);
}
.article-content {
max-width: 720px;
margin-inline: auto;
text-align: right;
}
.article-content p {
font-size: var(--text-md);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
margin-bottom: var(--space-5);
}
.article-content h2 {
font-size: var(--text-2xl);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
margin-block: var(--space-10) var(--space-4);
position: relative;
padding-right: var(--space-4);
border-right: 3px solid var(--color-gold-primary);
}
.article-content h3 {
font-size: var(--text-xl);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
margin-block: var(--space-8) var(--space-3);
}
.article-content ul {
display: flex;
flex-direction: column;
gap: var(--space-3);
margin-block: var(--space-5);
}
.article-content ul li {
position: relative;
padding-inline-end: var(--space-6);
font-size: var(--text-md);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
}
.article-content ul li::before {
content: '';
position: absolute;
top: 0.65em;
right: 0;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--color-gold-primary);
}
.article-content blockquote {
margin-block: var(--space-8);
padding: var(--space-6) var(--space-8);
border-right: 3px solid var(--color-gold-primary);
background: var(--color-bg-card);
border-radius: var(--radius-md);
font-size: var(--text-lg);
font-weight: var(--weight-medium);
color: var(--color-text-primary);
line-height: var(--leading-loose);
}
.article-tags {
display: flex;
gap: var(--space-2);
flex-wrap: wrap;
justify-content: flex-start;
margin-top: var(--space-10);
padding-top: var(--space-6);
border-top: 1px solid var(--color-border);
}
.article-author {
display: flex;
align-items: center;
gap: var(--space-4);
margin-top: var(--space-8);
padding: var(--space-6);
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
text-align: right;
}
.article-author__avatar {
width: 56px;
height: 56px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
display: flex;
align-items: center;
justify-content: center;
font-weight: var(--weight-black);
font-size: var(--text-lg);
color: #0a0a0a;
flex-shrink: 0;
}
.article-author__body {
flex: 1;
}
.article-author__name {
font-size: var(--text-base);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
}
.article-author__role {
font-size: var(--text-sm);
color: var(--color-text-muted);
margin-top: 2px;
}
.related-articles {
background: var(--color-bg-secondary);
border-top: 1px solid var(--color-border);
}
@media (max-width: 1024px) {
.article-hero__inner { align-items: center; text-align: center; margin-inline: auto; }
.breadcrumb { justify-content: center; }
.article-hero__meta { justify-content: center; }
.article-content { max-width: 100%; }
}
@media (max-width: 767px) {
.article-cover { aspect-ratio: 4/3; }
.article-author { flex-direction: column; text-align: center; }
}
.faq-hero {
padding-top: calc(72px + var(--space-16));
padding-bottom: var(--space-16);
position: relative;
overflow: hidden;
background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 70%),
var(--color-bg-primary);
border-bottom: 1px solid var(--color-border);
}
.faq-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='%23c9a84c' fill-opacity='0.025'%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");
pointer-events: none;
opacity: 0.5;
}
.breadcrumb {
display: flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--color-text-muted);
margin-bottom: var(--space-6);
position: relative;
z-index: 1;
}
.breadcrumb a {
color: var(--color-text-muted);
transition: color var(--transition-base);
}
.breadcrumb a:hover {
color: var(--color-gold-primary);
}
.breadcrumb .sep {
color: var(--color-text-muted);
opacity: 0.5;
}
.breadcrumb .current {
color: var(--color-gold-primary);
font-weight: var(--weight-medium);
}
.faq-hero__inner {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--space-4);
text-align: right;
max-width: 1050px;
margin-inline-start: auto;
}
.faq-hero__title {
font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
font-weight: var(--weight-black);
line-height: var(--leading-tight);
color: var(--color-text-primary);
}
.faq-hero__title .text-gold {
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.faq-hero__desc {
font-size: var(--text-md);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
max-width: 60ch;
}
.faq-page {
background: var(--color-bg-primary);
}
.faq-page__list {
max-width: 820px;
margin-inline: auto;
}
.faq-group {
margin-bottom: var(--space-12);
}
.faq-group:last-child {
margin-bottom: 0;
}
.faq-group__title {
display: flex;
align-items: center;
justify-content: flex-start;
gap: var(--space-3);
margin-bottom: var(--space-5);
}
.faq-group__title .icon-box {
width: 40px;
height: 40px;
font-size: 1.1rem;
}
.faq-group__title h2 {
font-size: var(--text-lg);
font-weight: var(--weight-bold);
color: var(--color-text-primary);
}
@media (max-width: 1024px) {
.faq-hero__inner { align-items: center; text-align: center; margin-inline: auto; }
.breadcrumb { justify-content: center; }
.faq-group__title { justify-content: center; }
}
@media (max-width: 480px) {
.navbar__mobile-menu {height: max-content;}
.navbar__mobile-link {padding: 5px;}
}
.error-page {
min-height: 100svh;
padding-top: 72px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
var(--color-bg-primary);
}
.error-page::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='%23c9a84c' fill-opacity='0.025'%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");
pointer-events: none;
opacity: 0.5;
}
.error-page__inner {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: var(--space-5);
max-width: 560px;
padding-inline: var(--container-pad);
padding-block: var(--space-16);
}
.error-page__icon-wrap {
position: relative;
width: 120px;
height: 120px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: var(--space-2);
}
.error-page__icon-ring {
position: absolute;
inset: 0;
border-radius: 50%;
border: 1px solid var(--color-gold-border);
}
.error-page__icon-ring::before {
content: '';
position: absolute;
inset: 14px;
border-radius: 50%;
border: 1px dashed rgba(201,168,76,0.25);
}
.error-page__icon {
position: relative;
z-index: 1;
font-size: 3.2rem;
animation: error-float 4s ease-in-out infinite;
}
.error-page__icon-badge {
position: absolute;
top: -6px;
left: -6px;
width: 34px;
height: 34px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
display: flex;
align-items: center;
justify-content: center;
font-size: var(--text-md);
font-weight: var(--weight-black);
color: #0a0a0a;
box-shadow: 0 0 20px rgba(201,168,76,0.35);
z-index: 2;
}
@keyframes error-float {
0%, 100% { transform: translateY(0); }
50%       { transform: translateY(-8px); }
}
.error-page__code {
font-size: clamp(var(--text-4xl), 11vw, 6.5rem);
font-weight: var(--weight-black);
line-height: 1;
letter-spacing: 0.02em;
background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.error-page__title {
font-size: clamp(var(--text-xl), 3.2vw, var(--text-2xl));
font-weight: var(--weight-bold);
color: var(--color-text-primary);
}
.error-page__desc {
font-size: var(--text-md);
color: var(--color-text-secondary);
line-height: var(--leading-loose);
max-width: 42ch;
}
.error-page__actions {
display: flex;
gap: var(--space-4);
flex-wrap: wrap;
justify-content: center;
margin-top: var(--space-2);
}
.error-page__links {
display: flex;
align-items: center;
gap: var(--space-3);
flex-wrap: wrap;
justify-content: center;
margin-top: var(--space-8);
padding-top: var(--space-6);
border-top: 1px solid var(--color-border);
width: 100%;
}
.error-page__links a {
font-size: var(--text-sm);
color: var(--color-text-muted);
transition: color var(--transition-base);
}
.error-page__links a:hover {
color: var(--color-gold-primary);
}
.error-page__links .sep {
color: var(--color-text-muted);
opacity: 0.4;
font-size: var(--text-xs);
}
@media (max-width: 767px) {
.error-page__icon-wrap { width: 96px; height: 96px; }
.error-page__icon { font-size: 2.4rem; }
.error-page__actions { flex-direction: column; width: 100%; }
.error-page__actions .btn { width: 100%; }
}

.contact-hero {
  padding-top: calc(72px + var(--space-16));
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 70%),
              var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
}

.contact-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='%23c9a84c' fill-opacity='0.025'%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");
  pointer-events: none;
  opacity: 0.5;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--color-gold-primary);
}

.breadcrumb .sep {
  color: var(--color-text-muted);
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--color-gold-primary);
  font-weight: var(--weight-medium);
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  text-align: right;
  max-width: 700px;
}

.contact-hero__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-black);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

.contact-hero__title .text-gold {
  background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero__desc {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  line-height: var(--leading-loose);
  max-width: 55ch;
}


.contact-methods {
  background: var(--color-bg-primary);
}

.contact-methods__grid {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.contact-method {
  flex: 1 1 calc(33.333% - var(--space-6));
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-align: right;
}

.contact-method__body {
  flex: 1;
}

.contact-method__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-method__value {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  direction: ltr;
  display: inline-block;
  transition: color var(--transition-base);
}

.contact-method:hover .contact-method__value {
  color: var(--color-gold-primary);
}

.contact-social {
  background: var(--color-bg-secondary);
  border-block: 1px solid var(--color-border);
}

.contact-social__grid {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.social-card {
  flex: 1 1 calc(20% - var(--space-5));
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  text-align: center;
}

.social-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold-muted);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.social-card:hover .social-card__icon {
  background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-light));
  box-shadow: var(--shadow-gold-sm);
}

.social-card__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

.social-card__handle {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  direction: ltr;
}

.contact-form-section {
  background: var(--color-bg-primary);
}

.contact-form-wrap {
  max-width: 640px;
  margin-inline: auto;
  padding: var(--space-10);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  text-align: right;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 0 3px var(--color-gold-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: flex;
  gap: var(--space-4);
}

.form-row .form-group {
  flex: 1;
}


@media (max-width: 1024px) {
  .contact-hero__inner { align-items: center; text-align: center; margin-inline: auto; }
  .breadcrumb { justify-content: center; }

  .contact-method { flex: 1 1 100%; justify-content: center; text-align: center; }
  .contact-method__body { flex: 0 0 auto; }

  .social-card { flex: 1 1 calc(33.333% - var(--space-5)); }
}

@media (max-width: 767px) {
  .social-card { flex: 1 1 calc(50% - var(--space-5)); }
  .form-row { flex-direction: column; gap: 0; }
  .contact-form-wrap { padding: var(--space-6); }
}