:root {
    --stcrt-bg-dark: #07090f;
    --stcrt-bg-surface: #101521;
    --stcrt-bg-surface-alt: #161d2d;
    --stcrt-text-primary: #f8f9fa;
    --stcrt-text-secondary: #9da6b8;
    --stcrt-accent: #d4af37;
    --stcrt-accent-hover: #f3e5ab;
    --stcrt-border: rgba(212, 175, 55, 0.2);
    
    --stcrt-font-head: 'Cinzel', serif;
    --stcrt-font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.stcrt-body {
    font-family: var(--stcrt-font-body);
    background-color: var(--stcrt-bg-dark);
    color: var(--stcrt-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.stcrt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.stcrt-header {
    background-color: rgba(7, 9, 15, 0.95);
    border-bottom: 1px solid var(--stcrt-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.stcrt-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.stcrt-logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stcrt-logo {
    font-family: var(--stcrt-font-head);
    font-size: 28px;
    font-weight: 600;
    color: var(--stcrt-bg-dark);
    background: linear-gradient(135deg, var(--stcrt-accent), var(--stcrt-accent-hover));
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.stcrt-brand-text {
    display: flex;
    flex-direction: column;
}

.stcrt-brand-name {
    font-family: var(--stcrt-font-head);
    font-size: 18px;
    color: var(--stcrt-accent);
    letter-spacing: 1px;
}

.stcrt-brand-sub {
    font-size: 11px;
    color: var(--stcrt-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stcrt-nav {
    display: flex;
    gap: 30px;
}

.stcrt-nav-link {
    color: var(--stcrt-text-primary);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.stcrt-nav-link:hover {
    color: var(--stcrt-accent);
}

.stcrt-badge {
    border: 1px solid var(--stcrt-accent);
    color: var(--stcrt-accent);
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 20px;
    font-family: var(--stcrt-font-head);
    letter-spacing: 1px;
}

/* Hero */
.stcrt-hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at center, var(--stcrt-bg-surface) 0%, var(--stcrt-bg-dark) 100%);
    text-align: center;
    position: relative;
}

.stcrt-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%, transparent 50%, rgba(212, 175, 55, 0.03) 50%, rgba(212, 175, 55, 0.03) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    pointer-events: none;
}

.stcrt-hero-label {
    display: inline-block;
    color: var(--stcrt-accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--stcrt-accent);
    padding-bottom: 5px;
}

.stcrt-hero-title {
    font-family: var(--stcrt-font-head);
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.stcrt-hero-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--stcrt-text-secondary);
    font-size: 18px;
    line-height: 1.8;
}

.stcrt-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stcrt-hero-card {
    background: var(--stcrt-bg-surface-alt);
    padding: 25px 20px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stcrt-hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--stcrt-border);
}

.stcrt-hc-title {
    font-family: var(--stcrt-font-head);
    color: var(--stcrt-accent);
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stcrt-hc-desc {
    color: var(--stcrt-text-primary);
    font-size: 14px;
}

/* Sections */
.stcrt-section {
    padding: 100px 0;
}

.stcrt-bg-alt {
    background-color: var(--stcrt-bg-surface);
}

.stcrt-section-title {
    font-family: var(--stcrt-font-head);
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.stcrt-section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--stcrt-text-secondary);
}

.stcrt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stcrt-card {
    background: var(--stcrt-bg-dark);
    padding: 40px 30px;
    border: 1px solid var(--stcrt-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stcrt-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--stcrt-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stcrt-card:hover {
    background: var(--stcrt-bg-surface-alt);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.stcrt-card:hover::after {
    opacity: 1;
}

.stcrt-card-kicker {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--stcrt-accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.stcrt-card-title {
    font-family: var(--stcrt-font-head);
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.stcrt-card-text {
    color: var(--stcrt-text-secondary);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.stcrt-card-list {
    list-style: none;
}

.stcrt-card-list li {
    font-size: 14px;
    color: var(--stcrt-text-primary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.stcrt-card-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--stcrt-accent);
    font-size: 12px;
}

/* Footer */
.stcrt-footer {
    background-color: #030407;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stcrt-footer-slogan {
    font-family: var(--stcrt-font-head);
    font-size: 28px;
    text-align: center;
    color: var(--stcrt-accent);
    margin-bottom: 60px;
    font-weight: 400;
}

.stcrt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.stcrt-footer-heading {
    font-family: var(--stcrt-font-head);
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.stcrt-footer-text, .stcrt-footer-address p {
    color: var(--stcrt-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.stcrt-footer-address {
    font-style: normal;
}

.stcrt-footer-link {
    color: var(--stcrt-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.stcrt-footer-link:hover {
    color: var(--stcrt-accent);
}

.stcrt-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    color: var(--stcrt-text-secondary);
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .stcrt-hero-title { font-size: 42px; }
    .stcrt-hero-grid { grid-template-columns: 1fr; }
    .stcrt-grid { grid-template-columns: 1fr; }
    .stcrt-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .stcrt-nav { display: none; }
    .stcrt-header-inner { justify-content: space-between; }
    .stcrt-hero { padding: 80px 0 60px; }
    .stcrt-hero-title { font-size: 32px; }
    .stcrt-section { padding: 60px 0; }
}
