@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Playfair+Display:wght@400;700;800&display=swap');

:root {
   
    --bg-ultimate-dark: #0B0C10;      
    --bg-element-dark: #1A1A1D;       
    --text-pure-light: #F8F8F8;       
    --text-subtle-light: #B0B0B0;     
    --accent-cosmic-violet: #6A0DAD;  
    --accent-luminous-aqua: #00FA9A;  
    --border-glow-dark: rgba(106, 13, 173, 0.3); 
    --shadow-deep: rgba(0, 0, 0, 0.8);        

   
    --gradient-main-bg: linear-gradient(155deg, var(--bg-ultimate-dark) 0%, #06070B 100%);
    --gradient-element-bg: linear-gradient(160deg, var(--bg-element-dark) 0%, #121215 100%);
    --gradient-button: linear-gradient(90deg, var(--accent-cosmic-violet) 0%, var(--accent-luminous-aqua) 100%);
    --gradient-hover-button: linear-gradient(270deg, var(--accent-cosmic-violet) 0%, var(--accent-luminous-aqua) 100%);

    
    --glow-violet-sm: 0 0 8px rgba(106, 13, 173, 0.7);
    --glow-violet-md: 0 0 15px rgba(106, 13, 173, 0.7), 0 0 25px rgba(106, 13, 173, 0.5);
    --glow-aqua-sm: 0 0 8px rgba(0, 250, 154, 0.7);
    --glow-aqua-md: 0 0 15px rgba(0, 250, 154, 0.7), 0 0 25px rgba(0, 250, 154, 0.5);
}


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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    color: var(--text-pure-light);
    background: var(--gradient-main-bg);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22"><circle cx="11" cy="11" r="3.5" fill="%2300FA9A" opacity="0.8"/><path d="M11 2L11 5M2 11L5 11M11 20L11 17M20 11L17 11" stroke="%236A0DAD" stroke-width="2" stroke-linecap="round"/></svg>') 11 11, auto;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 18% 82%, rgba(106, 13, 173, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 82% 18%, rgba(0, 250, 154, 0.05) 0%, transparent 45%);
    background-size: 80% 80%;
    z-index: -1;
    opacity: 0.7;
    animation: backgroundEthereal 35s infinite alternate ease-in-out;
}

@keyframes backgroundEthereal {
    0% { background-position: 0% 0%, 100% 100%; }
    100% { background-position: 8% 12%, 92% 88%; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 10;
}


h1 {
    font-family: 'Poppins', serif;
    font-size: 6em;
    margin-bottom: 50px;
    line-height: 1.1;
    color: var(--text-pure-light);
    text-shadow: var(--glow-violet-md);
    font-weight: 800; 
    text-align: center;
}

h2 {
    font-family: 'Poppins', serif;
    font-size: 4.1em;
    text-align: center;
    margin-bottom: 45px;
    color: var(--accent-luminous-aqua);
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    text-shadow: var(--glow-aqua-sm);
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 130px;
    height: 7px; 
    background: var(--gradient-button);
    border-radius: 4px;
    box-shadow: var(--glow-violet-md);
}

.section-description {
    text-align: center;
    font-size: 1.3em; 
    color: var(--text-subtle-light);
    max-width: 900px;
    margin: 0 auto 80px auto;
    line-height: 1.9;
    font-weight: 300;
}


section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.animated {
    opacity: 1;
    transform: translateY(0);
}


.bg-primary {
    background: var(--gradient-main-bg);
    color: var(--text-pure-light);
}

.bg-secondary {
    background-color: var(--bg-ultimate-dark);
    color: var(--text-pure-light);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5); 
}



.main-header {
    background: rgba(11, 12, 16, 0.9); 
    backdrop-filter: blur(15px); 
    padding: 25px 0; 
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px var(--shadow-deep); 
    border-bottom: 1px solid var(--border-glow-dark);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

.main-header.scrolled {
    background: rgba(6, 7, 11, 0.95); 
    box-shadow: 0 12px 35px var(--shadow-deep);
    border-bottom: 1px solid var(--accent-luminous-aqua);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px; 
    width: auto;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0,250,154,0.5));
}

.logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0,250,154,0.8));
}


.main-nav .nav-list {
    list-style: none;
    display: flex;
}

.main-nav .nav-list li {
    margin-left: 60px; 
}

.main-nav .nav-list a {
    font-family: 'Roboto', sans-serif;
    color: var(--text-pure-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 15px 0; 
    position: relative;
    font-size: 1.2em; 
}

.main-nav .nav-list a:hover {
    color: var(--accent-luminous-aqua);
    transform: translateY(-4px); 
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px; 
    bottom: -10px; 
    left: 0;
    background: var(--gradient-button);
    transition: width 0.4s ease;
    border-radius: 1.5px;
    box-shadow: var(--glow-violet-sm);
}

.main-nav .nav-list a:hover::after {
    width: 100%;
}



.btn {
    display: inline-block;
    padding: 18px 45px; 
    border-radius: 35px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em; 
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 8px 20px var(--shadow-deep); 
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    outline: none;
}

.btn::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-button);
    background-size: 200% auto;
    border-radius: 35px;
    z-index: -1;
    transition: background-position 0.6s ease;
}

.btn:hover::before {
    background-position: right center;
}

.btn::after { 
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-button);
    border-radius: 35px;
    filter: blur(12px); 
    opacity: 0;
    transition: opacity 0.5s ease, filter 0.5s ease;
    z-index: -2;
}

.btn:hover::after {
    opacity: 1;
    filter: blur(20px);
}

.btn:hover {
    transform: translateY(-6px); 
    box-shadow: 0 12px 25px var(--shadow-deep);
}

.btn-primary {
    background: var(--gradient-button); 
    color: #FFF;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}


.btn-secondary {
    background-color: var(--bg-element-dark);
    color: var(--accent-luminous-aqua);
    border: 2px solid var(--accent-luminous-aqua);
    box-shadow: 0 8px 20px rgba(0,250,154,0.2);
}

.btn-secondary:hover {
    background-color: var(--accent-luminous-aqua);
    color: var(--bg-ultimate-dark);
    box-shadow: 0 0 25px rgba(0,250,154,0.6);
    border-color: var(--accent-luminous-aqua);
}



.hero-section {
    background: var(--gradient-main-bg);
    text-align: center;
    padding: 180px 40px; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    animation: fadeInScale 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
    color: var(--text-pure-light);
}

.hero-section p {
    font-size: 1.6em; 
    animation: fadeIn 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s;
    opacity: 0;
    max-width: 900px;
    margin: 0 auto 60px auto; 
    color: var(--text-subtle-light);
    font-weight: 300;
}

.cta-buttons {
    margin-top: 60px; 
    animation: fadeIn 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 1.2s;
    opacity: 0;
    display: flex;
    justify-content: center;
    gap: 30px; 
}


@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}



.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2.8em; 
    color: var(--accent-luminous-aqua);
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.15);
    color: var(--text-pure-light);
}


.features-section {
    background-color: var(--bg-ultimate-dark);
    position: relative;
    padding-bottom: 120px;
}


.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(106, 13, 173, 0.07) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(0, 250, 154, 0.07) 0%, transparent 60%);
    background-size: 70% 70%;
    z-index: 0;
    animation: backgroundShapes 25s infinite alternate ease-in-out;
}

@keyframes backgroundShapes {
    0% { background-position: 0% 0%, 100% 100%; }
    100% { background-position: 5% 5%, 95% 95%; }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-item {
    background: var(--gradient-element-bg);
    padding: 38px; 
    border-radius: 18px; 
    text-align: center;
    box-shadow: 0 12px 30px var(--shadow-deep); 
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.5s ease;
    border: 1px solid var(--border-glow-dark);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-item::before { 
    content: '';
    position: absolute;
    top: -3px; 
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-button);
    z-index: -1;
    border-radius: 18px;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.03); 
    box-shadow: 0 20px 45px var(--shadow-deep);
    border-color: var(--accent-luminous-aqua);
}

.feature-item .fas {
    font-size: 4.5em; 
    color: var(--accent-luminous-aqua);
    margin-bottom: 28px;
    text-shadow: var(--glow-aqua-md);
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em; 
    margin-bottom: 20px;
    color: var(--text-pure-light);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-subtle-light);
    font-size: 1.05em; 
    line-height: 1.8;
    font-weight: 300;
}



.service-section {
    padding: 120px 0;
    position: relative;
}

.service-details {
    display: flex;
    align-items: center;
    gap: 70px; 
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-details.reverse-layout {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 450px; 
    text-align: center;
    position: relative;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px; 
    box-shadow: 0 18px 35px var(--shadow-deep); 
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.5s ease;
    border: 3px solid var(--accent-cosmic-violet); 
    filter: brightness(0.95); 
}

.service-image img:hover {
    transform: scale(1.04) rotate(0.8deg); 
    box-shadow: 0 25px 55px var(--shadow-deep);
    border-color: var(--accent-luminous-aqua);
}

.service-benefits {
    flex: 1;
    min-width: 450px; 
    list-style: none;
    font-size: 1.25em; 
    color: var(--text-pure-light);
    line-height: 2.2; 
}

.service-benefits li {
    margin-bottom: 25px; 
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-glow-dark);
}

.service-benefits li:last-child {
    border-bottom: none;
}

.service-benefits li .fas {
    color: var(--accent-luminous-aqua);
    margin-right: 25px; 
    font-size: 1.8em; 
    text-shadow: var(--glow-aqua-sm);
    flex-shrink: 0;
}



.pricing-section {
    padding: 120px 0;
    background-color: var(--bg-ultimate-dark);
    position: relative;
    overflow: hidden;
}

.pricing-tabs {
    text-align: center;
    margin-bottom: 60px; 
    display: flex;
    justify-content: center;
    gap: 25px; 
    flex-wrap: wrap;
}

.pricing-tab-btn {
    background-color: var(--bg-element-dark);
    color: var(--text-pure-light);
    border: 1px solid var(--border-glow-dark);
    padding: 18px 40px; 
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
    outline: none;
    box-shadow: 0 6px 15px var(--shadow-deep);
}

.pricing-tab-btn:hover {
    background: var(--gradient-button);
    color: #FFF;
    box-shadow: 0 0 20px rgba(0,250,154,0.4);
    border-color: var(--accent-luminous-aqua);
    transform: translateY(-3px);
}

.pricing-tab-btn.active {
    background: var(--gradient-button);
    color: #FFF;
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(0,250,154,0.5);
    border-color: var(--accent-luminous-aqua);
}

.pricing-plans {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    animation: fadeIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.pricing-plans.active {
    display: grid;
}

.price-card {
    background: var(--gradient-element-bg);
    color: var(--text-pure-light);
    padding: 50px 40px; 
    border-radius: 20px; 
    text-align: center;
    box-shadow: 0 12px 30px var(--shadow-deep);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-glow-dark);
    z-index: 1;
}

.price-card:hover {
    transform: translateY(-18px) scale(1.03); 
    box-shadow: 0 22px 50px var(--shadow-deep);
    border-color: var(--accent-luminous-aqua);
}

.price-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em; 
    margin-bottom: 25px;
    color: var(--accent-cosmic-violet); 
    font-weight: 700;
}

.price-card .price {
    font-family: 'Roboto', sans-serif;
    font-size: 4.5em; 
    font-weight: 700;
    color: var(--accent-luminous-aqua);
    margin-bottom: 40px;
    text-shadow: var(--glow-aqua-md);
}

.price-card .price span {
    font-size: 0.6em;
    color: var(--text-subtle-light);
}

.price-card ul {
    list-style: none;
    margin-bottom: 40px;
}

.price-card ul li {
    padding: 15px 0; 
    border-bottom: 1px dashed var(--border-glow-dark);
    color: var(--text-subtle-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05em;
    font-weight: 300;
}

.price-card ul li:last-child {
    border-bottom: none;
}

.price-card ul li .fas {
    color: var(--accent-luminous-aqua);
    margin-right: 15px;
    font-size: 1.6em; 
    text-shadow: var(--glow-aqua-sm);
    flex-shrink: 0;
}

.price-card .btn {
    width: 95%; 
    padding: 20px; 
    font-size: 1.15em; 
    margin-top: 30px;
}

.price-card.recommended {
    border: 4px solid var(--accent-luminous-aqua); 
    transform: scale(1.1); 
    box-shadow: 0 25px 60px var(--shadow-deep);
    z-index: 2;
    background: linear-gradient(160deg, #2A2A30 0%, #1D1D21 100%); 
}

.price-card.recommended .tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-button);
    color: #FFF;
    padding: 14px 28px; 
    font-weight: bold;
    font-size: 1.1em;
    border-bottom-left-radius: 18px;
    transform: rotate(45deg) translate(18%, -75%); 
    transform-origin: top right;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    animation: tagPulse 1.8s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes tagPulse {
    0% { transform: rotate(45deg) translate(18%, -75%) scale(1); }
    50% { transform: rotate(45deg) translate(18%, -75%) scale(1.05); }
    100% { transform: rotate(45deg) translate(18%, -75%) scale(1); }
}



.faq-section {
    padding: 120px 0;
    background: var(--gradient-main-bg);
}

.faq-accordion {
    max-width: 950px; 
    margin: 50px auto 0 auto;
}

.faq-item {
    background: var(--bg-element-dark);
    border-radius: 15px; 
    margin-bottom: 25px; 
    box-shadow: 0 10px 25px var(--shadow-deep);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-glow-dark);
}

.faq-item:hover {
    box-shadow: 0 12px 30px var(--shadow-deep);
    transform: translateY(-5px);
    border-color: var(--accent-luminous-aqua);
}

.faq-question {
    width: 100%;
    background-color: transparent;
    color: var(--text-pure-light);
    padding: 28px 35px; 
    text-align: left;
    border: none;
    font-size: 1.2em; 
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--border-glow-dark);
}

.faq-question:hover {
    color: var(--accent-luminous-aqua);
}

.faq-question.active {
    background: linear-gradient(to right, rgba(0,250,154,0.08), transparent);
    color: var(--accent-luminous-aqua);
    border-bottom-color: var(--accent-luminous-aqua);
}

.faq-question::after {
    content: '\002B';
    font-size: 2em; 
    transition: transform 0.3s ease;
    color: var(--accent-cosmic-violet);
    font-weight: normal;
}

.faq-question.active::after {
    content: "\2212";
    transform: rotate(0deg);
    color: var(--accent-luminous-aqua);
}

.faq-answer {
    padding: 0 35px;
    background-color: rgba(18, 18, 21, 0.98); 
    color: var(--text-subtle-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
    max-height: 600px; 
    padding: 30px 35px; 
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.9;
    font-weight: 300;
}



.contact-section {
    padding: 120px 0;
    background: var(--gradient-main-bg);
}

.contact-content {
    display: flex;
    gap: 70px; 
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 400px; 
    background: var(--gradient-element-bg);
    padding: 55px; 
    border-radius: 18px;
    box-shadow: 0 12px 30px var(--shadow-deep);
    border: 1px solid var(--border-glow-dark);
}

.contact-form .form-group {
    margin-bottom: 28px;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-pure-light);
    font-size: 1.05em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 18px; 
    border: 1px solid var(--border-glow-dark);
    border-radius: 10px; 
    background-color: rgba(26, 26, 29, 0.8); 
    color: var(--text-pure-light);
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--accent-luminous-aqua);
    box-shadow: 0 0 0 4px rgba(0,250,154,0.2);
    outline: none;
    background-color: var(--bg-element-dark);
}

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

.contact-form .btn-primary {
    width: auto;
    padding: 18px 50px;
    font-size: 1.15em;
    margin-top: 30px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    margin-bottom: 35px;
    color: var(--accent-luminous-aqua);
    text-align: center;
}

.contact-info p {
    margin-bottom: 25px;
    font-size: 1.15em;
    color: var(--text-subtle-light);
    display: flex;
    align-items: flex-start;
    font-weight: 300;
}

.contact-info p .fas, .contact-info p .fab {
    color: var(--accent-cosmic-violet); 
    margin-right: 20px;
    font-size: 1.8em; 
    text-shadow: var(--glow-violet-sm);
    flex-shrink: 0;
}

.contact-info a {
    color: var(--accent-luminous-aqua);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-cosmic-violet);
}



.main-footer {
    background-color: var(--bg-ultimate-dark);
    color: var(--text-subtle-light);
    padding: 50px 0; 
    text-align: center;
    font-size: 1em;
    box-shadow: 0 -10px 25px var(--shadow-deep);
    border-top: 1px solid var(--border-glow-dark);
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-footer .footer-links {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

.main-footer .footer-links a {
    color: var(--text-subtle-light);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.main-footer .footer-links a:hover {
    color: var(--accent-luminous-aqua);
    transform: translateY(-5px);
}

.main-footer .footer-links .fab {
    font-size: 2.2em; 
    vertical-align: middle;
}


.content-page-main {
    padding: 120px 0;
    min-height: calc(100vh - 150px);
    background: var(--gradient-main-bg);
    color: var(--text-pure-light);
}

.content-section {
    background: var(--gradient-element-bg);
    padding: 55px;
    border-radius: 18px;
    box-shadow: 0 12px 30px var(--shadow-deep);
    border: 1px solid var(--border-glow-dark);
}

.content-section h1, .content-section h2 {
    color: var(--accent-luminous-aqua);
    text-align: left;
    margin-bottom: 28px;
    font-size: 3em; 
    font-weight: 700;
}

.content-section h2::after {
    left: 0;
    transform: translateX(0);
    background: var(--accent-cosmic-violet);
    width: 90px;
}

.content-section p, .content-section ul li {
    color: var(--text-subtle-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05em;
    font-weight: 300;
}

.content-section ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 30px;
}

.content-section ul li {
    margin-bottom: 15px;
}

.content-section a {
    color: var(--accent-luminous-aqua);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--accent-cosmic-violet);
}



@media (max-width: 1300px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 4.5em;
    }
    h2 {
        font-size: 3.2em;
    }
    .hero-section {
        padding: 140px 30px;
    }
    .feature-grid, .service-details, .pricing-plans, .contact-content {
        gap: 35px;
    }
    .price-card.recommended {
        transform: scale(1.06);
    }
    .contact-form, .contact-info, .content-section {
        padding: 50px;
    }
    .content-section h1, .content-section h2 {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {
    .main-header .nav-list {
        margin-top: 10px;
    }
    h1 {
        font-size: 3.5em;
    }
    h2 {
        font-size: 2.8em;
    }
    .hero-section {
        padding: 120px 25px;
        min-height: 80vh;
    }
    .hero-section p {
        font-size: 1.3em;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    .cta-buttons .btn {
        margin: 0 auto;
        width: 90%;
        max-width: 380px;
    }
    .section-description {
        font-size: 1.05em;
    }
    .feature-grid, .service-details, .pricing-plans, .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-details.reverse-layout {
        flex-direction: column;
    }
    .price-card.recommended {
        transform: scale(1.04);
    }
    .pricing-tabs {
        flex-direction: column;
        gap: 15px;
    }
    .price-card {
        padding: 45px 35px;
    }
    .service-image, .service-benefits {
        min-width: unset;
        width: 100%;
    }
    .contact-form, .contact-info, .content-section {
        padding: 45px;
    }
    .content-section h1, .content-section h2 {
        font-size: 2.5em;
    }

    
    .main-header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }
    .main-header .logo {
        flex-grow: 1;
    }
    .main-nav {
        width: 100%;
        order: 1;
        margin-top: 15px;
    }
    .hamburger {
        display: block;
        margin-left: auto;
        margin-right: 0;
    }
    .main-nav .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none;
        margin-top: 10px;
        background-color: rgba(11, 12, 16, 0.95);
        border-top: 1px solid var(--border-glow-dark);
        padding-bottom: 15px;
        box-shadow: 0 6px 15px var(--shadow-deep);
        border-radius: 0 0 15px 15px;
    }
    .main-nav .nav-list.active {
        display: flex;
    }
    .main-nav .nav-list li {
        margin: 15px 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 2.2em;
    }
    .section-description {
        font-size: 1em;
    }
    .hero-section p {
        font-size: 1.1em;
    }
    .btn {
        padding: 16px 35px;
        font-size: 1.05em;
    }
    .feature-item h3 {
        font-size: 2em;
    }
    .feature-item .fas {
        font-size: 4em;
    }
    .price-card h3 {
        font-size: 2.2em;
    }
    .price-card .price {
        font-size: 3.5em;
    }
    .faq-question {
        font-size: 1.1em;
        padding: 25px 25px;
    }
    .faq-answer {
        padding: 25px 25px;
    }
    .contact-form, .contact-info, .content-section {
        padding: 35px;
    }
    .content-section h1, .content-section h2 {
        font-size: 2.2em;
    }
    body {
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><circle cx="9" cy="9" r="3" fill="%2300FA9A" opacity="0.8"/><path d="M9 1.5L9 4M1.5 9L4 9M9 16.5L9 14M16.5 9L14 9" stroke="%236A0DAD" stroke-width="1.5" stroke-linecap="round"/></svg>') 9 9, auto;
    }
}