/* ====== Global Styles ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

:root {
    --primary-bg: #0f1419;
    --secondary-bg: #1a1f2e;
    --card-bg: #252d3d;
    --text-primary: #e4e6eb;
    --text-secondary: #a8adb8;
    --accent: #4f46e5;
    --accent-hover: #6366f1;
    --success: #10b981;
    --border-color: #3a4556;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 25%, #252d3d 50%, #1a1f2e 75%, #0f1419 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== Navigation ====== */
.navbar {
    background-color: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    filter: invert(1) brightness(0.9);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: 0;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.05rem;
}

.nav-menu a:hover {
    color: var(--accent);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
    border-left: 1px solid var(--border-color);
    padding-left: 1.5rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.5;
    filter: grayscale(100%);
}

.lang-btn:hover {
    opacity: 0.8;
    filter: grayscale(50%);
    transform: scale(1.1);
}

.lang-btn.active {
    opacity: 1;
    filter: grayscale(0%);
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}

.lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.cta-nav-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #c44a78 100%) !important;
    color: white !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1.05rem !important;
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.2);
}

.cta-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* ====== Hero Section ====== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.hero-left {
    z-index: 2;
}

.hero-breadcrumb {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-left h2 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-accent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44a78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hero-right {
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    z-index: 2;
}

.hero-consultation {
    z-index: 2;
    background: rgba(37, 45, 61, 0.4);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-consultation h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-consultation p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero-consultation-note {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem !important;
}

.hero-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #c44a78 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.3);
}

/* ====== Services Section ====== */
.services {
    padding: 5rem 0;
    background: transparent;
}

.services h3,
.team h3,
.pricing h3,
.contact h3 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background-color: rgba(79, 70, 229, 0.05);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
}

/* ====== Team Section ====== */
.team {
    padding: 5rem 0;
    background: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.team-member h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.team-skills {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.bio {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ====== Pricing Section ====== */
.pricing {
    padding: 5rem 0;
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.pricing-card.featured {
    border-color: #ff6b6b;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.15);
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.period {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-family: 'Montserrat', sans-serif;
}

.features li:last-child {
    border-bottom: none;
}

.plan-button {
    width: 100%;
    padding: 1.1rem 2rem;
    border: 2px solid var(--accent);
    background-color: transparent;
    color: var(--accent);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.plan-button:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.plan-button:active {
    transform: translateY(0);
}

.plan-button.primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #c44a78 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.plan-button.primary:hover {
    background: linear-gradient(135deg, #ff5252 0%, #b83869 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.3);
}

/* ====== Contact Section ====== */
.contact {
    padding: 5rem 0;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-secondary);
}

.info-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-hover);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group select {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.submit-button {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #c44a78 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
}

/* ====== FAQ Section ====== */
.faq {
    padding: 5rem 0;
    background: transparent;
}

.faq h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.faq-question {
    padding: 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, transparent 100%);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-item:hover .faq-question {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, transparent 100%);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    background: linear-gradient(135deg, rgba(79,70,229,0.08) 0%, rgba(255,107,107,0.06) 100%);
    padding: 1.5rem 1.8rem 1.8rem 1.8rem;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    padding: 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0.8rem 0;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer ul li {
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.faq-answer strong {
    color: var(--text-primary);
}
.rights {
    padding: 5rem 0;
    background: transparent;
}

.rights h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.rights-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rights-item {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.rights-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, transparent 100%);
}

.rights-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.rights-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ====== Footer ====== */
.footer {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: 5rem;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ====== Animations ====== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== Why Us Section ====== */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.why-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(79, 70, 229, 0.03) 100%);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0.08) 100%);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ====== Portfolio Section ====== */
.portfolio {
    padding: 5rem 0;
    background: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--card-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.portfolio-card:hover .portfolio-image::after {
    left: 100%;
}

.image-placeholder {
    font-size: 4rem;
}

.portfolio-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-desc {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tags span {
    display: inline-block;
    background: var(--secondary-bg);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-tags span {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-left h2 {
        font-size: 2.2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .hero-right {
        padding: 2rem;
        margin-top: 2rem;
    }

    .hero-consultation h3 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-image {
        height: 40px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .services h3,
    .team h3,
    .pricing h3,
    .contact h3,
    .faq h3,
    .rights h3,
    .why-us h3,
    .portfolio h3 {
        font-size: 2rem;
    }

    .contact-content,
    .services-grid,
    .team-grid,
    .pricing-grid,
    .why-grid,
    .portfolio-grid,
    .faq-grid,
    .rights-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* ====== SVG Icons Section ====== */
.svg-icons-section {
    padding: 80px 0;
    background: transparent;
}

.svg-icons-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.svg-icons-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
}

.icon-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.icon-card:hover .icon-image {
    transform: scale(1.1);
}

.icon-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
}

.icon-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.icon-card:hover .icon-text {
    color: var(--accent-hover);
}

@media (max-width: 768px) {
    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .svg-icons-section {
        padding: 60px 0;
        
    }

    .svg-icons-section h3 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .icons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .icon-card {
        padding: 1.5rem;
    }

    .icon-image {
        width: 60px;
        height: 60px;
    }

    .svg-icons-section h3 {
        font-size: 1.5rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 0.8rem;
        font-size: 0.85rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .header .container {
        padding: 1rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
}
