/* Հիմնական գույներ և փոփոխականներ */
:root {
    --bg: #050505;
    --card-bg: #111111;
    --card-border: #222222;
    --accent: #2dd4bf;
    --accent-hover: #24b09e;
    --text-main: #ffffff;
    --text-dim: #a1a1aa;
    --transition: all 0.3s ease;
}

html {
    /* Սահուն պտտում (scroll) ամբողջ կայքի համար */
    scroll-behavior: smooth; 
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0;
    -webkit-tap-highlight-color: transparent; 
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    line-height: 1.6;
}

.glow {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% -10%, rgba(45, 212, 191, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Չանհետացող Header (Sticky Header) */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.85); /* Կիսաթափանցիկ ֆոն */
    backdrop-filter: blur(12px); /* Ապակե էֆեկտ վրայով անցնելիս */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo { 
    font-size: 28px; 
    font-weight: 800; 
    letter-spacing: -1px; 
    text-decoration: none; 
    color: var(--text-main); 
}
.logo span { color: var(--accent); }

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.contact-link:hover { color: var(--accent); }

/* Կպչուն Զանգի Կոճակ */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite; /* Ուշադրություն գրավող անիմացիա */
}
.floating-call-btn:hover {
    transform: scale(1.1);
    background-color: #fff;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(45, 212, 191, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

main {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

/* Hero Section */
.hero { text-align: center; padding: 80px 0 60px; max-width: 800px; }
h1 { font-size: clamp(40px, 8vw, 72px); line-height: 1.1; margin-bottom: 20px; letter-spacing: -2px; }
h1 span { color: var(--accent); }
.hero p { color: var(--text-dim); font-size: clamp(16px, 4vw, 20px); max-width: 600px; margin: 0 auto; }

/* Pricing Section */
.pricing { width: 100%; padding: 60px 0; text-align: center; }
.pricing h2 { font-size: 32px; margin-bottom: 40px; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.1);
}
.pricing-card.popular {
    border-color: rgba(45, 212, 191, 0.5);
    background: linear-gradient(180deg, #161616 0%, var(--card-bg) 100%);
}
.badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--accent);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.pricing-card h3 { font-size: 28px; margin-bottom: 10px; }
.plan-desc { color: var(--text-dim); font-size: 14px; margin-bottom: 25px; border-bottom: 1px solid #222; padding-bottom: 20px;}
.features { list-style: none; margin-bottom: 30px; flex-grow: 1;}
.features li { margin-bottom: 15px; font-size: 15px; color: #ddd; display: flex; align-items: center; gap: 10px;}
.features li i { color: var(--accent); }

.select-plan-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid #444;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.pricing-card:hover .select-plan-btn,
.pricing-card.popular .select-plan-btn {
    background: var(--text-main);
    color: #000;
    border-color: var(--text-main);
}

/* Form Section */
.form-section { width: 100%; max-width: 500px; padding: 60px 0; }
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.form-title { text-align: center; margin-bottom: 25px; font-size: 24px; font-weight: 700;}
.form-group { margin-bottom: 15px; }

input, select, textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); }

.submit-btn {
    background: var(--accent);
    color: #000;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.submit-btn:hover { background: var(--accent-hover); transform: scale(1.02); }
.terms-agrement { margin-top: 15px; font-size: 12px; color: var(--text-dim); text-align: center; }
.terms-agrement a { color: var(--accent); text-decoration: none; }

/* Footer & Social Icons */
footer {
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #111;
    margin-top: auto;
    background: #080808;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}
.social-links a {
    color: var(--text-dim);
    font-size: 24px;
    transition: var(--transition);
    text-decoration: none;
}
.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}
.copyright { margin-top: 20px; opacity: 0.4; font-size: 14px; }

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .glass-card { padding: 30px 20px; }
    .floating-call-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 20px; }
}