/* MobiGrid - Static Site Styles (Updated for Greece Market) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --primary: #FF1E56; /* Тот самый неоновый красный/розовый со скрина */
  --primary-hover: #D41444;
  --primary-fg: #fff;
  --secondary: #0F172A; /* Глубокий темно-синий для хедера и футера */
  --secondary-light: #1E293B;
  --secondary-fg: #F1F5F9;
  --bg: #F8FAFC;
  --text: #0F172A;
  --text-muted: #64748B;
  --accent: #3B82F6;
  --border: #E2E8F0;
  --card: #fff;
  --radius: 8px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
a { color: var(--accent); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--primary); text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 2rem; }

/* Header */
.header { position: sticky; top: 0; z-index: 100; background: var(--secondary); border-bottom: 1px solid rgba(255,255,255,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--primary); text-decoration: none; text-transform: uppercase; letter-spacing: -0.02em; }
.logo span { color: #fff; }
.logo:hover { text-decoration: none; opacity: 0.9; }
.logo-tag { font-size: 0.7rem; color: rgba(241,245,249,0.5); margin-left: 8px; font-weight: 600; }
.nav { display: flex; gap: 8px; }
.nav a { padding: 10px 16px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; color: var(--secondary-fg); transition: 0.3s; }
.nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav a.active { background: var(--primary); color: var(--primary-fg); }

/* Hero */
.hero { background: var(--secondary); padding: 5rem 0; text-align: center; border-bottom: 4px solid var(--primary); }
.hero-badge { display: inline-block; background: rgba(255,30,86,0.15); border: 1px solid var(--primary); color: var(--primary); padding: 6px 18px; border-radius: 999px; font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; }
.hero h1 { margin-top: 1.5rem; font-size: 3.5rem; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.hero p { margin-top: 1rem; font-size: 1.25rem; color: #94A3B8; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-actions { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

/* Countdown */
.countdown { display: flex; gap: 12px; }
.countdown-box { display: flex; flex-direction: column; align-items: center; background: var(--secondary-light); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 20px; min-width: 80px; }
.countdown-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: #fff; }
.countdown-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--primary); font-weight: 700; margin-top: 4px; }

/* Button */
.btn { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: var(--radius); font-family: var(--font-display); font-size: 0.9rem; font-weight: 800; border: none; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-primary { background: var(--primary); color: var(--primary-fg); box-shadow: 0 4px 14px rgba(255,30,86,0.4); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,30,86,0.6); }

/* Grid & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 992px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

.card { border: 1px solid var(--border); border-radius: 12px; background: var(--card); overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(15,23,42,0.1); }
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.5rem; flex-grow: 1; }
.card-tag { display: inline-block; background: var(--secondary); color: #fff; padding: 4px 10px; border-radius: 4px; font-family: var(--font-display); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.card-title { margin-top: 1rem; font-size: 1.25rem; font-weight: 800; line-height: 1.3; color: var(--secondary); }
.card-excerpt { margin-top: 0.75rem; font-size: 0.95rem; color: var(--text-muted); }

/* Section */
.section { padding: 5rem 0; }
.section-header { margin-bottom: 2.5rem; border-left: 5px solid var(--primary); padding-left: 1.5rem; }
.section-header h2 { font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; }

/* --- NEW FOOTER (AS PER SCREENSHOT) --- */
.site-footer {
    background-color: var(--secondary);
    color: #94A3B8;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-column h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 14px; }

.footer-column a {
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.footer-column a:hover { color: #fff; transform: translateX(5px); display: inline-block; }

.footer-column address { font-style: normal; line-height: 1.8; font-size: 0.95rem; }
.footer-column address a { color: #fff; font-weight: 600; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
/* --- END FOOTER STYLES --- */

/* Legal Page specific */
.legal-content h2 { border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 4px; margin-bottom: 1rem; }
.legal-content ul li { list-style-type: square; margin-left: 1rem; color: var(--text-muted); }