:root {
--bg-primary: #010101;
--bg-secondary: #111;
--bg-tertiary: #1a1a1a;
--bg-card: #181818;
--bg-elevated: #222;
--text-primary: #fff;
--text-secondary: #aaa;
--text-muted: #666;
--accent: #ec8622;
--accent-light: #fedcbb;
--accent-dark: #d4731e;
--accent-glow: rgba(236, 134, 34, 0.3);
--border: #2a2a2a;
--border-light: #333;
--header-bg: rgba(1, 1, 1, 0.85);
--header-border: rgba(255, 255, 255, 0.06);
--shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
--shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
--radius: 12px;
--radius-lg: 20px;
--radius-full: 9999px;
--font-display: 'Montserrat', sans-serif;
--font-body: 'Inter', sans-serif;
--transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
--section-padding: 100px 0;
--container: 1280px;
}
[data-theme="light"] {
--bg-primary: #fff;
--bg-secondary: #f8f6f3;
--bg-tertiary: #f0ede8;
--bg-card: #fff;
--bg-elevated: #f5f5f5;
--text-primary: #010101;
--text-secondary: #444;
--text-muted: #888;
--border: #e5e5e5;
--border-light: #ddd;
--header-bg: rgba(255, 255, 255, 0.92);
--header-border: rgba(0, 0, 0, 0.06);
--shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
--shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
--bg-card: #fff;
--accent-glow: rgba(236, 134, 34, 0.15);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
font-family: var(--font-body);
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
font-weight: 700;
line-height: 1.15;
color: var(--text-primary);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p { color: var(--text-secondary); font-size: 1.05rem; max-width: 70ch; }
.section-label {
display: inline-block;
font-family: var(--font-display);
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--accent);
margin-bottom: 16px;
}
.section-header {
text-align: center;
margin-bottom: 60px;
}
.section-header p {
margin: 16px auto 0;
max-width: 600px;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--font-display);
font-weight: 600;
font-size: 0.9rem;
padding: 14px 32px;
border-radius: var(--radius-full);
border: none;
cursor: pointer;
transition: all var(--transition);
position: relative;
overflow: hidden;
white-space: nowrap;
}
.btn-primary {
background: var(--accent);
color: #fff;
}
.btn-primary:hover {
background: var(--accent-dark);
color: var(--text-primary);
transform: translateY(-3px) scale(1.02);
box-shadow: 0 12px 40px var(--accent-glow);
}
.btn-secondary {
background: transparent;
color: var(--text-primary);
border: 1.5px solid var(--border);
}
.btn-secondary:hover {
border-color: var(--accent);
color: var(--accent);
transform: translateY(-2px);
}
.btn-outline {
background: transparent;
color: var(--accent);
border: 1.5px solid var(--accent);
}
.btn-outline:hover {
background: var(--accent);
color: #fff;
transform: translateY(-2px);
}
.site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 16px 0;
transition: all var(--transition);
background: transparent;
}
.site-header.scrolled {
background: var(--header-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--header-border);
padding: 10px 0;
}
.site-header.menu-open {
background: var(--header-bg) !important;
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
}
.header-inner {
max-width: var(--container);
margin: 0 auto;
padding: 0 24px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-family: var(--font-display);
font-weight: 700;
font-size: 1.3rem;
color: var(--text-primary);
}
.logo img { height: 48px; width: auto; }
.logo:hover { color: var(--accent); }
.nav-links {
display: flex;
align-items: center;
gap: 32px;
}
.nav-links a {
font-size: 0.85rem;
font-weight: 500;
color: var(--text-secondary);
position: relative;
padding: 4px 0;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions {
display: flex;
align-items: center;
gap: 16px;
}
.theme-toggle {
background: none;
border: 1.5px solid var(--border);
border-radius: var(--radius-full);
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--text-secondary);
font-size: 1.1rem;
transition: all var(--transition);
position: relative;
}
.theme-toggle:hover {
border-color: var(--accent);
color: var(--accent);
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
position: absolute;
transition: all 0.4s ease;
}
[data-theme="light"] .theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="light"] .theme-toggle .icon-sun { opacity: 0; transform: rotate(90deg) scale(0); }
.theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0); }
.theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
.mobile-menu-btn {
display: none;
background: none;
border: none;
cursor: pointer;
width: 32px;
height: 24px;
position: relative;
z-index: 1001;
}
.mobile-menu-btn span {
display: block;
width: 100%;
height: 2px;
background: var(--text-primary);
position: absolute;
left: 0;
transition: all 0.3s ease;
}
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }
.mobile-menu-btn.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 80px;
flex-wrap: wrap;
}
.hero-shader {
position: absolute;
inset: 0;
z-index: 1;
width: 100%;
height: 100%;
opacity: 0.6;
pointer-events: none;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
background:
radial-gradient(ellipse 80% 60% at 20% 80%, rgba(236, 134, 34, 0.12) 0%, transparent 60%),
radial-gradient(ellipse 60% 50% at 80% 20%, rgba(236, 134, 34, 0.06) 0%, transparent 50%),
radial-gradient(ellipse 50% 40% at 50% 50%, rgba(254, 220, 187, 0.04) 0%, transparent 50%);
}
.hero-grid {
position: absolute;
inset: 0;
z-index: 0;
background-image:
linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
background-size: 60px 60px;
}
.hero .container {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.hero-content { padding-right: 20px; }
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(236, 134, 34, 0.1);
border: 1px solid rgba(236, 134, 34, 0.2);
padding: 8px 16px;
border-radius: var(--radius-full);
font-size: 0.78rem;
font-weight: 500;
color: var(--accent);
margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s infinite; }
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.hero-ring {
position: relative;
width: 420px;
height: 420px;
}
.hero-ring svg {
width: 100%;
height: 100%;
animation: spin-slow 30s linear infinite;
}
.hero-ring-center {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
}
.hero-ring-center-icon {
width: 100px;
height: 100px;
background: var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 60px var(--accent-glow);
animation: pulse-glow 3s ease-in-out infinite;
}
.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 4px;
margin-top: 48px;
padding-top: 32px;
border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat .number {
font-family: var(--font-display);
font-size: 1.8rem;
font-weight: 700;
color: var(--accent);
}
.hero-stat .label {
font-size: 0.78rem;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-top: 2px;
}
.particle {
position: absolute;
width: 4px;
height: 4px;
background: var(--accent);
border-radius: 50%;
opacity: 0;
animation: float-particle 8s infinite;
}
section { padding: var(--section-padding); }
.section-dark { background: var(--bg-secondary); }
.section-accent-bg {
background: linear-gradient(135deg, rgba(236, 134, 34, 0.05) 0%, transparent 50%);
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.about-image {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
aspect-ratio: 4/3;
background: var(--bg-tertiary);
}
.about-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-image::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(236, 134, 34, 0.1) 0%, transparent 50%);
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.about-metric {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 20px;
transition: all var(--transition);
}
.about-metric:hover {
border-color: var(--accent);
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.about-metric .metric-value {
font-family: var(--font-display);
font-size: 2rem;
font-weight: 700;
color: var(--accent);
}
.about-metric .metric-label {
font-size: 0.85rem;
color: var(--text-secondary);
margin-top: 4px;
}
.process-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.process-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 40px 32px;
transition: all var(--transition);
position: relative;
overflow: hidden;
}
.process-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--accent);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.5s ease;
}
.process-card:hover::before { transform: scaleX(1); }
.process-card:hover {
transform: translateY(-8px);
border-color: var(--accent);
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.process-number {
font-family: var(--font-display);
font-size: 3rem;
font-weight: 700;
color: var(--accent);
opacity: 0.3;
line-height: 1;
margin-bottom: 20px;
}
.process-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.process-card p { font-size: 0.95rem; }
.process-icon {
width: 48px;
height: 48px;
background: rgba(236, 134, 34, 0.1);
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
color: var(--accent);
}
.tech-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
margin-bottom: 60px;
}
.tech-image {
border-radius: var(--radius-lg);
overflow: hidden;
background: var(--bg-tertiary);
aspect-ratio: 4/3;
position: relative;
}
.tech-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.tech-image .tech-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 30px;
background: linear-gradient(transparent, rgba(1,1,1,0.8));
}
.tech-badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(236, 134, 34, 0.15);
padding: 6px 14px;
border-radius: var(--radius-full);
font-size: 0.78rem;
font-weight: 500;
color: var(--accent);
margin-bottom: 16px;
}
.tech-content h2 { margin-bottom: 20px; }
.tech-content p { margin-bottom: 16px; }
.tech-cta-block {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 48px;
text-align: center;
margin-top: 40px;
transition: all var(--transition);
}
.tech-cta-block:hover { border-color: var(--accent); }
.tech-cta-block h3 { margin-bottom: 12px; }
.tech-cta-block p { margin: 0 auto 24px; }
.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.product-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
transition: all var(--transition);
position: relative;
display: flex;
flex-direction: column;
}
.product-card-inner {
padding: 40px 32px;
display: flex;
flex-direction: column;
flex: 1;
}
.product-card-inner .btn { margin-top: auto; }
.product-card.featured {
border-color: var(--accent);
box-shadow: 0 0 40px var(--accent-glow);
}
.product-card.featured .product-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: #fff;
font-size: 0.72rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
padding: 6px 20px;
border-radius: var(--radius-full);
z-index: 2;
}
.product-card:hover {
transform: translateY(-6px);
border-color: var(--accent);
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.product-card.featured:hover { transform: translateY(-6px); }
.product-icon {
width: 56px;
height: 56px;
background: rgba(236, 134, 34, 0.1);
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
color: var(--accent);
}
.product-card h3 { margin-bottom: 8px; }
.product-price {
font-family: var(--font-display);
font-size: 2rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 8px;
}
.product-price-sub {
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 24px;
}
.product-features { margin-bottom: 28px; flex-grow: 1; }
.product-features li {
display: flex;
align-items: flex-start;
gap: 10px;
padding: 8px 0;
font-size: 0.9rem;
color: var(--text-secondary);
border-bottom: 1px solid var(--border);
}
.product-features li:last-child { border-bottom: none; }
.product-features li::before {
content: 'âœ“';
color: var(--accent);
font-weight: 700;
flex-shrink: 0;
}
.product-card .btn { width: 100%; justify-content: center; }
.mission-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}
.mission-block {
padding: 40px;
border-radius: var(--radius-lg);
border: 1px solid var(--border);
background: var(--bg-card);
transition: all var(--transition);
}
.mission-block:hover { border-color: var(--accent); }
.mission-block h3 { margin-bottom: 20px; position: relative; padding-bottom: 16px; }
.mission-block h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background: var(--accent);
}
.benefits-list { margin-top: 28px; }
.benefit-item {
display: flex;
align-items: flex-start;
gap: 16px;
padding: 16px 0;
border-bottom: 1px solid var(--border);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-number {
font-family: var(--font-display);
font-size: 1.8rem;
font-weight: 700;
color: var(--accent);
line-height: 1;
min-width: 36px;
}
.benefit-text h4 { margin-bottom: 4px; font-size: 1rem; }
.benefit-text p { font-size: 0.9rem; }
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
text-align: center;
}
.stat-item { padding: 32px 20px; }
.stat-number {
font-family: var(--font-display);
font-size: 3rem;
font-weight: 700;
color: var(--accent);
line-height: 1;
}
.stat-number .suffix { font-size: 1.5rem; }
.stat-label {
font-size: 0.85rem;
color: var(--text-secondary);
margin-top: 8px;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-secondary); }
.contact-detail svg { color: var(--accent); flex-shrink: 0; }
.contact-form-wrap {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
display: block;
font-size: 0.85rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 14px 16px;
background: var(--bg-tertiary);
border: 1.5px solid var(--border);
border-radius: var(--radius);
color: var(--text-primary);
font-family: var(--font-body);
font-size: 0.95rem;
transition: all var(--transition);
outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--accent);
box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-primary); }
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
border-color: #ef4444;
box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}
.form-group .error-msg {
display: none;
font-size: 0.75rem;
color: #ef4444;
margin-top: 4px;
font-weight: 500;
}
.form-group.error .error-msg {
display: block;
}
.captcha-box.error {
border-color: #ef4444;
}
.captcha-box.error .captcha-input {
border-color: #ef4444;
box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}
.captcha-box {
background: var(--bg-tertiary);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 16px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 16px;
}
.captcha-question {
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 600;
color: var(--text-primary);
white-space: nowrap;
}
.captcha-input {
width: 80px !important;
text-align: center;
padding: 10px !important;
}
.captcha-refresh {
background: none;
border: 1px solid var(--border);
border-radius: var(--radius);
color: var(--text-muted);
cursor: pointer;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: color 0.2s, border-color 0.2s;
}
.captcha-refresh:hover {
color: var(--accent);
border-color: var(--accent);
}
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.modal-overlay {
position: fixed;
inset: 0;
z-index: 2000;
background: rgba(1, 1, 1, 0.7);
backdrop-filter: blur(8px);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease;
}
.modal-overlay.active {
opacity: 1;
pointer-events: all;
}
.modal-box {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 48px;
max-width: 440px;
width: 90%;
text-align: center;
transform: scale(0.9) translateY(20px);
transition: all 0.4s ease;
}
.modal-overlay.active .modal-box {
transform: scale(1) translateY(0);
}
.modal-icon {
width: 64px;
height: 64px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 1.8rem;
}
.modal-icon.success {
background: rgba(34, 197, 94, 0.15);
color: #22c55e;
}
.modal-icon.error {
background: rgba(239, 68, 68, 0.15);
color: #ef4444;
}
.modal-box h3 { margin-bottom: 8px; }
.modal-box p { margin-bottom: 24px; font-size: 0.95rem; }
.modal-close {
margin-top: 8px;
width: 100%;
}
.site-footer {
background: var(--bg-secondary);
border-top: 1px solid var(--border);
padding: 60px 0 0;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
padding-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.footer-col h4,
.footer-col .footer-widget-title {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-muted);
margin-bottom: 20px;
}
.footer-col .widget { margin-bottom: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
font-size: 0.9rem;
color: var(--text-secondary);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
border-top: 1px solid var(--border);
padding: 24px 0;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
width: 40px;
height: 40px;
border: 1px solid var(--border);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
transition: all var(--transition);
}
.footer-social a:hover {
border-color: var(--accent);
color: var(--accent);
background: rgba(236, 134, 34, 0.1);
}
.back-to-top {
position: fixed;
bottom: 32px;
right: 32px;
z-index: 999;
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--bg-card);
border: 1px solid var(--border);
color: var(--text-secondary);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transform: translateY(20px);
pointer-events: none;
transition: all var(--transition);
}
.back-to-top.visible {
opacity: 1;
transform: translateY(0);
pointer-events: all;
}
.back-to-top:hover {
background: var(--accent);
color: #fff;
border-color: var(--accent);
}
.back-to-top .arrow-icon {
width: 22px;
height: 22px;
position: relative;
z-index: 2;
}
.progress-ring {
position: absolute;
inset: -1px;
width: 50px;
height: 50px;
}
.progress-ring circle {
fill: none;
stroke: var(--accent);
stroke-width: 2.5;
stroke-linecap: round;
transform: rotate(-90deg);
transform-origin: center;
transition: stroke-dashoffset 0.1s ease;
}
.reveal {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
opacity: 1;
transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left { transform: translateX(-60px); opacity: 0; transition: all 0.7s ease; }
.reveal-left.in { transform: translateX(0); opacity: 1; }
.reveal-right { transform: translateX(60px); opacity: 0; transition: all 0.7s ease; }
.reveal-right.in { transform: translateX(0); opacity: 1; }
.reveal-scale { transform: scale(0.9); opacity: 0; transition: all 0.7s ease; }
.reveal-scale.in { transform: scale(1); opacity: 1; }
@keyframes spin-slow {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 0 40px var(--accent-glow); }
50% { box-shadow: 0 0 80px var(--accent-glow), 0 0 120px rgba(236, 134, 34, 0.1); }
}
@keyframes float-particle {
0% { opacity: 0; transform: translateY(0) scale(0); }
20% { opacity: 0.8; }
80% { opacity: 0.4; }
100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.reveal, .reveal-left, .reveal-right, .reveal-scale {
opacity: 1;
transform: none;
}
.hero-ring svg { animation: none; }
.hero-badge .dot { animation: none; }
html { scroll-behavior: auto; }
}
.testimonials-wrapper { position: relative; }
.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.testimonial-arrow {
display: none;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 2;
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--bg-card);
border: 1.5px solid var(--border);
color: var(--text-primary);
cursor: pointer;
font-size: 1.4rem;
align-items: center;
justify-content: center;
transition: all var(--transition);
line-height: 1;
}
.testimonial-arrow:hover { border-color: var(--accent); color: var(--accent); }
.testimonial-arrow--prev { left: 4px; }
.testimonial-arrow--next { right: 4px; }
.testimonial-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 32px;
transition: all var(--transition);
}
.testimonial-card:hover {
border-color: var(--accent);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.testimonial-stars {
color: var(--accent);
font-size: 0.9rem;
letter-spacing: 2px;
margin-bottom: 16px;
}
.testimonial-card blockquote {
font-size: 0.95rem;
color: var(--text-secondary);
font-style: italic;
line-height: 1.7;
margin-bottom: 24px;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 12px;
padding-top: 16px;
border-top: 1px solid var(--border);
}
.testimonial-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(236,134,34,0.15);
color: var(--accent);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.8rem;
flex-shrink: 0;
}
.testimonial-name {
font-size: 0.88rem;
font-weight: 600;
color: var(--text-primary);
}
.testimonial-role {
font-size: 0.78rem;
color: var(--text-muted);
}
.solar-bot {
position: fixed;
right: 24px;
z-index: 998;
width: 80px;
height: 110px;
top: 20vh;
}
.bot-scene {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.bot-3d {
position: relative;
width: 60px;
height: 100px;
animation: bot-float 3.5s ease-in-out infinite;
}
@keyframes bot-float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
.bot-antenna {
position: absolute;
top: -8px;
left: 50%;
transform: translateX(-50%);
width: 2px;
height: 10px;
background: linear-gradient(to top, var(--accent), transparent);
}
.bot-antenna-tip {
position: absolute;
top: -5px;
left: 50%;
transform: translateX(-50%);
width: 8px;
height: 8px;
border-radius: 50%;
background: #fff;
box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent-glow);
animation: bot-pulse 1.2s ease-in-out infinite;
}
@keyframes bot-pulse {
0%, 100% { box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent-glow); }
50% { box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(236,134,34,0.5); }
}
.bot-head {
position: absolute;
top: 4px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 32px;
background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
border: 2px solid var(--accent);
border-radius: 10px 10px 8px 8px;
box-shadow: 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.bot-face {
position: absolute;
inset: 7px 6px;
display: flex;
flex-wrap: wrap;
gap: 2px;
justify-content: center;
align-content: center;
}
.bot-eye {
width: 10px;
height: 10px;
border-radius: 50%;
background: #fff;
box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent-glow);
animation: bot-blink 4s ease-in-out infinite;
}
.bot-eye--left { margin-right: 6px; }
.bot-eye--right { margin-left: 6px; }
@keyframes bot-blink {
0%, 45%, 55%, 100% { transform: scaleY(1); opacity: 1; }
50% { transform: scaleY(0.08); opacity: 0.4; }
}
.bot-mouth {
width: 14px;
height: 3px;
background: var(--accent);
border-radius: 2px;
margin-top: 3px;
flex: 0 0 100%;
opacity: 0.6;
}
.bot-neck {
position: absolute;
top: 34px;
left: 50%;
transform: translateX(-50%);
width: 8px;
height: 4px;
background: #222;
border-radius: 2px;
}
.bot-torso {
position: absolute;
top: 38px;
left: 50%;
transform: translateX(-50%);
width: 44px;
height: 42px;
background: linear-gradient(180deg, #2a2a2a, #151515);
border: 2px solid var(--accent);
border-radius: 8px;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3px;
box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.bot-core {
width: 18px;
height: 18px;
border-radius: 50%;
background: radial-gradient(circle at 35% 35%, #fff 0%, var(--accent) 50%, #d4731e 100%);
box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(236,134,34,0.3);
animation: bot-core-pulse 1.8s ease-in-out infinite;
}
@keyframes bot-core-pulse {
0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(236,134,34,0.3); }
50% { transform: scale(1.12); box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(236,134,34,0.4); }
}
.bot-solar-stripe {
width: 26px;
height: 2px;
background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
border-radius: 1px;
opacity: 0.5;
}
.bot-solar-stripe:nth-child(3) { width: 20px; opacity: 0.35; }
.bot-solar-stripe:nth-child(4) { width: 14px; opacity: 0.25; }
.bot-arm {
position: absolute;
top: 42px;
width: 5px;
height: 24px;
background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
border: 1.5px solid var(--accent);
border-radius: 4px;
}
.bot-arm--left { left: -10px; transform-origin: top center; animation: bot-arm-swing 2.5s ease-in-out infinite; }
.bot-arm--right { right: -10px; transform-origin: top center; animation: bot-arm-swing 2.5s ease-in-out 1.25s infinite; }
@keyframes bot-arm-swing {
0%, 100% { transform: rotate(-6deg); }
50% { transform: rotate(6deg); }
}
.bot-hand {
position: absolute;
bottom: -3px;
left: 50%;
transform: translateX(-50%);
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--accent);
box-shadow: 0 0 8px var(--accent-glow);
}
.bot-leg {
position: absolute;
bottom: 0;
width: 6px;
height: 16px;
background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
border: 1.5px solid #444;
border-radius: 3px;
}
.bot-leg--left { left: 14px; transform-origin: top center; animation: bot-leg-walk 1.8s ease-in-out infinite; }
.bot-leg--right { right: 14px; transform-origin: top center; animation: bot-leg-walk 1.8s ease-in-out 0.9s infinite; }
@keyframes bot-leg-walk {
0%, 100% { transform: rotateX(0deg); }
50% { transform: rotateX(12deg); }
}
.bot-foot {
position: absolute;
bottom: -2px;
left: 50%;
transform: translateX(-50%);
width: 10px;
height: 4px;
border-radius: 2px;
background: var(--accent);
opacity: 0.7;
}
.bot-glow {
position: absolute;
bottom: -6px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 10px;
background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
border-radius: 50%;
animation: bot-glow-pulse 2s ease-in-out infinite;
}
@keyframes bot-glow-pulse {
0%, 100% { opacity: 0.3; transform: translateX(-50%) scaleX(1); }
50% { opacity: 0.7; transform: translateX(-50%) scaleX(1.4); }
}
.bot-speech {
position: absolute;
right: 88px;
top: 18px;
background: var(--bg-card);
border: 1.5px solid var(--accent);
border-radius: 10px;
padding: 6px 14px;
font-size: 0.7rem;
color: var(--text-primary);
white-space: nowrap;
opacity: 0;
transform: translateX(10px) scale(0.95);
transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
pointer-events: none;
z-index: 999;
font-family: var(--font-display);
font-weight: 600;
letter-spacing: 0.01em;
box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.solar-bot[data-section] .bot-speech {
opacity: 1;
transform: translateX(0) scale(1);
}
.bot-speech::after {
content: '';
position: absolute;
right: -7px;
top: 50%;
transform: translateY(-50%);
border: 6px solid transparent;
border-left-color: var(--accent);
border-right: none;
}
.solar-bot.bot-hero .bot-arm--left { animation: bot-wave-arm 0.8s ease-in-out infinite; }
.solar-bot.bot-hero .bot-arm--right { animation: bot-wave-arm 0.8s ease-in-out 0.4s infinite; }
.solar-bot.bot-hero .bot-antenna-tip { animation: bot-pulse 0.6s ease-in-out infinite; }
@keyframes bot-wave-arm {
0%, 100% { transform: rotate(-10deg); }
50% { transform: rotate(25deg); }
}
.solar-bot.bot-about .bot-arm--left { animation: none; transform: rotate(5deg); }
.solar-bot.bot-about .bot-arm--right { animation: none; transform: rotate(-55deg); }
.solar-bot.bot-about .bot-head { animation: bot-nod 2.5s ease-in-out infinite; transform-origin: center bottom; }
@keyframes bot-nod {
0%, 100% { transform: translateX(-50%) rotate(0deg); }
25% { transform: translateX(-50%) rotate(3deg); }
75% { transform: translateX(-50%) rotate(-3deg); }
}
.solar-bot.bot-process .bot-core { animation: bot-core-spin 1.2s ease-in-out infinite; }
@keyframes bot-core-spin {
0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(236,134,34,0.3); transform: scale(1) rotate(0deg); }
50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(236,134,34,0.4); transform: scale(1.15) rotate(180deg); }
}
.solar-bot.bot-process .bot-3d { animation: bot-body-sway 3s ease-in-out infinite; }
@keyframes bot-body-sway {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(5px); }
75% { transform: translateX(-5px); }
}
.solar-bot.bot-tech .bot-eye { animation: bot-scan-eye 0.25s ease-in-out infinite alternate; }
@keyframes bot-scan-eye {
0% { transform: scaleY(1); }
100% { transform: scaleY(0.1); }
}
.solar-bot.bot-tech .bot-eye--left { animation-delay: 0s; }
.solar-bot.bot-tech .bot-eye--right { animation-delay: 0.12s; }
.solar-bot.bot-tech .bot-antenna-tip { animation: bot-pulse 0.2s ease-in-out infinite alternate; }
.solar-bot.bot-products .bot-arm--left { animation: none; transform: rotate(-35deg); }
.solar-bot.bot-products .bot-arm--right { animation: none; transform: rotate(35deg); }
.solar-bot.bot-mission .bot-3d { animation: bot-stand 1.2s ease-in-out infinite; }
@keyframes bot-stand {
0%, 100% { transform: scaleY(1); }
50% { transform: scaleY(1.06); }
}
.solar-bot.bot-mission .bot-core { box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(236,134,34,0.3); animation: bot-core-pulse 0.6s ease-in-out infinite; }
.solar-bot.bot-stats .bot-3d { animation: bot-bounce 0.4s ease-in-out infinite; }
@keyframes bot-bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-16px); }
}
.solar-bot.bot-stats .bot-arm--left { animation: bot-arm-swing 0.3s ease-in-out infinite; }
.solar-bot.bot-stats .bot-arm--right { animation: bot-arm-swing 0.3s ease-in-out 0.15s infinite; }
.solar-bot.bot-testimonials .bot-head { animation: bot-listen 2s ease-in-out infinite; transform-origin: center bottom; }
@keyframes bot-listen {
0%, 100% { transform: translateX(-50%) rotate(0deg); }
30% { transform: translateX(-50%) rotate(5deg); }
70% { transform: translateX(-50%) rotate(-5deg); }
}
.solar-bot.bot-contact .bot-arm--right { animation: none; transform: rotate(-60deg); }
.solar-bot.bot-contact .bot-arm--left { animation: none; transform: rotate(20deg); }
.solar-bot.bot-contact .bot-core { animation: bot-core-pulse 0.5s ease-in-out infinite; }
.solar-bot { cursor: pointer; }
.solar-bot.bot-hover .bot-3d { animation: bot-hover-pulse 0.6s ease-in-out infinite; }
.solar-bot.bot-hover .bot-eye { animation: bot-hover-blink 0.15s ease-in-out infinite !important; }
.solar-bot.bot-hover .bot-core { animation-duration: 0.5s !important; }
.solar-bot.bot-hover .bot-antenna { animation: bot-antenna-nod 0.4s ease-in-out infinite alternate; transform-origin: bottom center; }
@keyframes bot-hover-pulse {
0%, 100% { transform: translateY(0) scale(1); }
50% { transform: translateY(-4px) scale(1.02); }
}
@keyframes bot-hover-blink {
0%, 49%, 51%, 100% { transform: scaleY(1); opacity: 1; }
50% { transform: scaleY(0.1); opacity: 0.3; }
}
@keyframes bot-antenna-nod {
0% { transform: translateX(-50%) rotate(-10deg); }
100% { transform: translateX(-50%) rotate(10deg); }
}
@media (max-width: 900px) {
.solar-bot { width: 60px; height: 82px; right: 12px; }
.bot-3d { width: 44px; height: 74px; }
.bot-head { width: 30px; height: 24px; }
.bot-eye { width: 7px; height: 7px; }
.bot-torso { width: 32px; height: 32px; }
.bot-core { width: 14px; height: 14px; }
.bot-arm { width: 4px; height: 18px; top: 32px; }
.bot-hand { width: 6px; height: 6px; }
.bot-leg { width: 5px; height: 12px; }
.bot-leg--left { left: 10px; }
.bot-leg--right { right: 10px; }
.bot-foot { width: 7px; height: 3px; }
.bot-antenna { top: -6px; height: 8px; }
.bot-antenna-tip { width: 6px; height: 6px; top: -4px; }
.bot-neck { top: 26px; width: 6px; height: 3px; }
.bot-speech { font-size: 0.6rem; padding: 4px 10px; right: 66px; top: 12px; }
.bot-glow { width: 28px; height: 6px; }
}
@media (max-width: 1024px) {
.hero .container,
.about-grid,
.tech-grid,
.mission-grid,
.contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
.hero-content { padding-right: 0; }
.hero-visual { display: none; }
.products-grid { grid-template-columns: 1fr 1fr; }
.product-card.featured { transform: none; }
.product-card.featured:hover { transform: translateY(-6px); }
.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
.hero-visual { display: flex; }
.hero-stats { display: none; }
.hero-ring { width: 240px; height: 240px; }
.hero-ring-center-icon { width: 56px; height: 56px; }
.hero-ring-center-icon img { width: 32px !important; height: 32px !important; }
.nav-links { display: none; }
.mobile-menu-btn { display: block; }
.nav-links.mobile-open {
display: flex;
flex-direction: column;
position: fixed;
inset: 0;
background: var(--bg-primary);
padding: 100px 40px 40px;
gap: 8px;
justify-content: flex-start;
z-index: 1001;
-webkit-overflow-scrolling: touch;
overflow-y: auto;
}
.nav-links.mobile-open a {
font-size: 1.2rem;
padding: 16px 0;
border-bottom: 1px solid var(--border);
}
.nav-links.mobile-open a:active,
.nav-links.mobile-open a:focus {
color: var(--accent);
}
.mobile-menu-btn {
padding: 10px;
width: auto;
height: auto;
}
.theme-toggle { width: 48px; height: 48px; }
.header-inner { position: relative; }
.testimonials-grid {
display: flex;
gap: 16px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
padding: 4px 4px 16px;
scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonials-grid .testimonial-card {
flex: 0 0 82%;
scroll-snap-align: start;
}
.testimonial-arrow { display: flex; }
.process-grid,
.products-grid,
.stats-grid { grid-template-columns: 1fr; gap: 20px; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr; }
.tech-cta-block .btn { width: 100%; justify-content: center; white-space: normal; }
.hero { min-height: 90vh; }
.logo { max-width: 55%; flex-shrink: 0; }
.logo img { height: 36px; max-width: 100%; object-fit: contain; }
.nav-actions { flex-shrink: 0; }
.contact-form-wrap { padding: 24px; }
.tech-cta-block { padding: 32px 24px; }
.mission-block { padding: 28px 24px; }
.captcha-box { flex-direction: column; align-items: flex-start; }
.section-header { margin-bottom: 40px; }
.back-to-top { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
.hero-cta { flex-direction: column; }
.btn { width: 100%; justify-content: center; }
.stats-grid { grid-template-columns: 1fr 1fr; }
} .blog-header {
padding: 140px 0 40px;
text-align: center;
}
.blog-header h1 { margin-bottom: 8px; }
.blog-header p { margin: 0 auto; color: var(--text-muted); }
.blog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
padding: 0 24px;
max-width: var(--container);
margin: 0 auto 60px;
}
.blog-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.blog-card-thumb {
display: block;
aspect-ratio: 16/9;
overflow: hidden;
}
.blog-card-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-cat {
display: inline-block;
font-size: 0.72rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--accent);
margin-bottom: 8px;
}
.blog-card-title { margin-bottom: 8px; }
.blog-card-title a { color: var(--text-primary); }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; }
.blog-card-meta {
display: flex;
justify-content: space-between;
font-size: 0.8rem;
color: var(--text-muted);
padding-top: 12px;
border-top: 1px solid var(--border);
} .single-header { padding: 140px 24px 0; max-width: 720px; margin: 0 auto; }
.single-header h1 { margin-bottom: 8px; }
.single-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }
.cat-links a { font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; }
.cat-links a::after { content: ', '; }
.cat-links a:last-child::after { content: ''; }
.single-feat-img { max-width: 800px; margin: 0 auto 32px; border-radius: var(--radius-lg); overflow: hidden; }
.single-content { max-width: 720px; margin: 0 auto; padding: 0 24px 60px; }
.single-content p { margin-bottom: 20px; }
.single-content h2, .single-content h3 { margin: 40px 0 16px; }
.single-content img { border-radius: var(--radius); margin: 24px 0; }
.single-nav {
display: flex;
justify-content: space-between;
max-width: 720px;
margin: 0 auto 40px;
padding: 0 24px;
}
.single-nav a { color: var(--accent); font-size: 0.9rem; }
.page-links { margin-top: 24px; }
.page-content { padding: 140px 24px 60px; max-width: 720px; margin: 0 auto; }
.page-content h1 { margin-bottom: 24px; }
.page-content p { margin-bottom: 16px; }
.page-404 {
text-align: center;
padding: 160px 24px;
}
.page-404 h1 { font-size: 6rem; color: var(--accent); margin-bottom: 16px; }
.page-404 p { margin: 0 auto 32px; }
.sidebar { padding: 0 24px; }
.widget { margin-bottom: 32px; }
.widget-title { font-size: 1rem; margin-bottom: 12px; color: var(--accent); }
.widget ul li { margin-bottom: 6px; }
.widget ul a { font-size: 0.9rem; color: var(--text-secondary); }
.widget ul a:hover { color: var(--accent); }
.comments-area { max-width: 720px; margin: 0 auto 60px; padding: 0 24px; }
.comments-title { margin-bottom: 24px; }
.comment-list { list-style: none; }
.comment { margin-bottom: 24px; padding: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.comment-meta { font-size: 0.85rem; margin-bottom: 8px; }
.comment-meta .fn { font-weight: 600; }
.comment-content p { font-size: 0.9rem; }
.comment-reply { margin-top: 8px; }
.comment-reply a { font-size: 0.8rem; color: var(--accent); }
.comment-awaiting-moderation { color: var(--accent); font-size: 0.85rem; }
.comment-form .form-submit .submit { background: var(--accent); color: #fff; border: none; padding: 12px 28px; border-radius: var(--radius-full); cursor: pointer; font-family: var(--font-display); font-weight: 600; }
.search-form { max-width: 400px; margin: 0 auto 3rem; display: flex; gap: 0.5rem; padding: 0 24px; }
.search-field { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-full); padding: 0.8rem 1.2rem; font-family: var(--font-body); font-size: 0.85rem; color: var(--text-primary); }
.search-submit { background: var(--accent); color: #fff; padding: 0.8rem 1.5rem; border-radius: var(--radius-full); border: none; cursor: pointer; font-family: var(--font-display); font-weight: 600; }
.pagination { text-align: center; padding: 20px 0 60px; }
.pagination a, .pagination span { display: inline-block; padding: 8px 16px; margin: 0 4px; border-radius: var(--radius); border: 1px solid var(--border); color: var(--text-secondary); font-size: 0.9rem; }
.pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination a:hover { border-color: var(--accent); color: var(--accent); } .legal-page { max-width: 800px; margin: 120px auto 60px; padding: 0 24px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.legal-page p { margin-bottom: 12px; font-size: 0.95rem; }
.legal-page ul { margin: 8px 0 16px 24px; }
.legal-page ul li { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 6px; list-style: disc; }
.legal-page .back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); margin-bottom: 32px; font-size: 0.9rem; }
.legal-page .back-link:hover { color: var(--accent-light); }
.cookie-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.9rem; }
.cookie-table th, .cookie-table td { border: 1px solid var(--border); padding: 12px; text-align: left; color: var(--text-secondary); }
.cookie-table th { background: var(--bg-secondary); color: var(--text-primary); font-family: var(--font-display); font-weight: 600; }