:root {
    --primary: #6c5ce7;
    --primary-dark: #5649c0;
    --primary-light: #8579ec;
    --secondary: #00cec9;
    --danger: #ff7675;
    --warning: #fdcb6e;
    --success: #00b894;
    --dark: #0f0f1f;
    --darker: #0a0a14;
    --darkest: #05050a;
    --light: #f5f6fa;
    --gray: #636e72;
    --gray-light: #dfe6e9;
    --bg-dark: #1e272e;
    --bg-darker: #171e24;
    --bg-light: #2f3640;
    --text-dark: #2d3436;
    --text-light: #f5f6fa;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

[data-theme="light"] {
    --dark: #f5f6fa;
    --darker: #dfe6e9;
    --darkest: #ffffff;
    --text-light: #2d3436;
    --text-dark: #2d3436;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--darkest);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(108, 92, 231, 0.1) 0%, rgba(22, 22, 40, 0) 50%),
                radial-gradient(circle at 30% 70%, rgba(0, 206, 201, 0.1) 0%, rgba(22, 22, 40, 0) 50%);
    z-index: -2;
    pointer-events: none;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(15, 15, 31, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.main-header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    z-index: 1001;
}

.logo-icon {
    width: 36px;
    height: 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-core {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px var(--primary);
}

.logo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.desktop-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    opacity: 0.9;
    transition: var(--transition);
}

.desktop-nav a:hover {
    opacity: 1;
    color: var(--primary);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

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

.btn-login {
    padding: 10px 25px;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    border: none;
    cursor: pointer;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: var(--transition);
    z-index: 1000;
    padding: 100px 0;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-nav .btn-login {
    margin-top: 20px;
    font-size: 1.2rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.hero-text {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #c6d4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.glitch {
    position: relative;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #c6d4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    10% { clip: rect(112px, 9999px, 76px, 0); }
    20% { clip: rect(85px, 9999px, 77px, 0); }
    30% { clip: rect(27px, 9999px, 97px, 0); }
    40% { clip: rect(64px, 9999px, 98px, 0); }
    50% { clip: rect(61px, 9999px, 85px, 0); }
    60% { clip: rect(99px, 9999px, 114px, 0); }
    70% { clip: rect(34px, 9999px, 115px, 0); }
    80% { clip: rect(98px, 9999px, 129px, 0); }
    90% { clip: rect(43px, 9999px, 96px, 0); }
    100% { clip: rect(82px, 9999px, 64px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    10% { clip: rect(25px, 9999px, 145px, 0); }
    20% { clip: rect(129px, 9999px, 102px, 0); }
    30% { clip: rect(79px, 9999px, 136px, 0); }
    40% { clip: rect(128px, 9999px, 123px, 0); }
    50% { clip: rect(35px, 9999px, 14px, 0); }
    60% { clip: rect(67px, 9999px, 61px, 0); }
    70% { clip: rect(117px, 9999px, 124px, 0); }
    80% { clip: rect(102px, 9999px, 147px, 0); }
    90% { clip: rect(145px, 9999px, 92px, 0); }
    100% { clip: rect(121px, 9999px, 6px, 0); }
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    width: fit-content;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
}

.network-visualization {
    width: 100%;
    height: 100%;
    position: relative;
}

.node {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    z-index: 1;
}

.node.main-node {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient);
    box-shadow: 0 0 30px var(--primary);
    z-index: 2;
}

.node.main-node::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.5;
    animation: pulse 3s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.nodes-container .node {
    width: 20px;
    height: 20px;
    background-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

.nodes-container .node:nth-child(1) {
    top: 20%;
    left: 20%;
}

.nodes-container .node:nth-child(2) {
    top: 20%;
    right: 20%;
}

.nodes-container .node:nth-child(3) {
    bottom: 20%;
    left: 20%;
}

.nodes-container .node:nth-child(4) {
    bottom: 20%;
    right: 20%;
}

.connection-line {
    position: absolute;
    background-color: rgba(108, 92, 231, 0.3);
    z-index: 1;
}

.connection-line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    animation: flow 3s linear infinite;
}

@keyframes flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.globe .ring {
    position: absolute;
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 50%;
}

.globe .ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.globe .ring:nth-child(2) {
    width: 80%;
    height: 80%;
    animation: rotate 15s linear infinite reverse;
}

.globe .ring:nth-child(3) {
    width: 60%;
    height: 60%;
    animation: rotate 10s linear infinite;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    position: relative;
    color: var(--text-light);
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.features {
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--darker);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

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

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.hexagon {
    width: 70px;
    height: 80px;
    background: var(--gradient);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon i {
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.devices {
    background-color: var(--darker);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.device-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.device-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.device-card i {
    font-size: 2.5rem;
    color: var(--primary);
}

.device-card span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing {
    background-color: var(--dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background-color: var(--darker);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-card.featured {
    border: 1px solid var(--primary);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'Рекомендуем';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.price-header {
    margin-bottom: 25px;
}

.price-header h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

.price-ribbon {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.price-amount {
    margin: 30px 0;
}

.price-amount span {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    line-height: 1;
}

.price-amount small {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 500;
}

.price-features {
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 25px;
}

.price-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

.price-btn {
    display: block;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition);
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.faq {
    background-color: var(--darker);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

.faq-toggle span:first-child {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 20px;
}

.faq-answer p {
    padding: 0 0 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.faq-item.active .faq-question {
    background-color: rgba(108, 92, 231, 0.1);
}

.faq-item.active .faq-toggle span:first-child {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.main-footer {
    background-color: var(--darkest);
    padding: 80px 0 30px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-info {
    max-width: 400px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 15px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom a {
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.3);
    border: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-visual {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 80px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}