@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* Root variables - TDXC Official Gold Palette */
:root {
    --primary: #5C5D5E;
    /* Gri pentru text principal */
    --accent: #C49337;
    /* Auriu principal */
    --accent-light: #EDCD78;
    /* Auriu mediu deschis */
    --accent-dark: #A7602B;
    /* Auriu închis/maro */
    --gold-light: #FCF7CD;
    /* Auriu foarte deschis */
    --gold-lighter: #FDF8D0;
    /* Auriu foarte pal */
    --gold-deep: #B89138;
    /* Auriu profund */

    --gradient-primary: linear-gradient(135deg, #C49337 0%, #A7602B 100%);
    --gradient-accent: linear-gradient(135deg, #EDCD78 0%, #C49337 100%);
    --gradient-light: linear-gradient(135deg, #FDF8D0 0%, #FCF7CD 100%);

    --dark: #2c2c2c;
    --light: #ffffff;
    --background: #fcfcfc;
    --text-light: #666666;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--gold-lighter);
    color: var(--dark);
}

/* Header & Navbar Styling */
.smart-n-successful-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(253, 248, 208, 0.95);
    box-shadow: 0 2px 15px rgba(196, 147, 55, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.smart-n-successful-header.scrolled {
    padding: 10px 0;
    background-color: rgba(253, 248, 208, 0.98);
    box-shadow: 0 5px 20px rgba(196, 147, 55, 0.15);
    transform: translateY(0);
    animation: float-down 0.5s ease;
}


.smart-n-successful-footer-legal-anpc-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;

}




/* Dropdown Menu Styling - Versiune îmbunătățită */
.smart-n-successful-nav-item.dropdown {
    position: relative;
}

.smart-n-successful-nav-item.dropdown .smart-n-successful-nav-link:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;

    margin-left: 6px;

    display: none;
    transition: transform 0.3s ease;


}

.smart-n-successful-nav-item.dropdown:hover .smart-n-successful-nav-link:after {
    transform: rotate(180deg);


}

.smart-n-successful-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    min-width: 220px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(196, 147, 55, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease-in-out;
    padding: 10px 0;
    margin-top: 15px;
    z-index: 100;
    border-top: 3px solid var(--accent);
}


.smart-n-successful-nav-item.dropdown:hover .smart-n-successful-dropdown-menu {
    opacity: 1;
    visibility: visible;

}

.smart-n-successful-dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
    padding-left: 25px;
}

.smart-n-successful-dropdown-item:hover {
    background-color: rgba(196, 147, 55, 0.08);
    color: var(--accent);
    padding-left: 25px;
}

/* Mobile Styles */
/* Mobile Styles - Dropdown permanent vizibil */
@media screen and (max-width: 992px) {
    .smart-n-successful-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        /* Schimbat din hidden în visible */
        transform: none;
        box-shadow: none;
        max-height: 500px;
        /* Schimbat din 0 în 500px */
        overflow: visible;
        /* Schimbat din hidden în visible */
        transition: none;
        /* Eliminat tranziția pentru că nu mai e nevoie */
        border-top: none;
        margin-top: 0;
        background: rgba(196, 147, 55, 0.05);
        border-radius: 5px;
        padding: 10px 0;
        /* Adăugat padding-ul direct */
        width: 100%;
    }

    /* Această regulă nu mai e necesară, dar o las pentru compatibilitate */
    .smart-n-successful-nav-item.dropdown.active .smart-n-successful-dropdown-menu {
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
    }

    .smart-n-successful-dropdown-item {
        text-align: left;
        padding: 10px 15px 10px 25px;
    }
}

.smart-n-successful-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo styling */
.smart-n-successful-logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}



.smart-n-successful-logo:hover {
    transform: translateY(-2px);
}

/* Navigation */
.smart-n-successful-nav {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.smart-n-successful-nav-list {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.smart-n-successful-nav-item {
    margin: 0 5px;
    position: relative;
}

.smart-n-successful-nav-link {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark);
    padding: 10px 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}



.smart-n-successful-nav-link:hover {
    color: var(--primary);
}

.smart-n-successful-nav-link:hover::after {
    width: 50%;
}

.smart-n-successful-nav-link.active {
    color: var(--primary);
}

.smart-n-successful-nav-link.active::after {
    width: 50%;
}

/* Button styling */
.smart-n-successful-btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(196, 147, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 147, 55, 0.4);
}

/* Hamburger Menu */
.smart-n-successful-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.smart-n-successful-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Floating effect animations */
@keyframes float-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes subtle-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.smart-n-successful-header.float-effect {
    animation: subtle-float 5s ease-in-out infinite;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .smart-n-successful-nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: calc(100vh - 80px);
        background: var(--gold-lighter);
        flex-direction: column;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 40px 20px;
        transition: left 0.3s ease;
        margin-right: 0;
        overflow-y: auto;
    }

    .smart-n-successful-nav-list.active {
        left: 0;
    }

    .smart-n-successful-nav-item {
        margin: 10px 0;
    }

    .smart-n-successful-nav-link {
        display: block;
        padding: 15px;
        font-size: 1rem;
    }

    .smart-n-successful-nav-link::after {
        bottom: 10px;
    }

    .smart-n-successful-hamburger {
        display: flex;
        margin-left: 10px;

    }

    .smart-n-successful-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-logo {
        font-size: 1.5rem;
    }

    .header-container {
        padding: 15px 5px;
    }



    .smart-n-successful-nav-list {
        width: 100%;
        max-width: none;
    }
}

/* Animation for mobile menu toggle */
.smart-n-successful-hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.smart-n-successful-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.smart-n-successful-hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hover effects for better interactivity */
.smart-n-successful-nav-item:hover .smart-n-successful-nav-link {
    transform: translateY(-2px);
}


/* Hero Section Styling */
.smart-n-successful-hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--gold-lighter);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.smart-n-successful-hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 0;
}

.smart-n-successful-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.08;
    z-index: 0;
}

.smart-n-successful-container.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.smart-n-successful-hero-text {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 30px;
}

.smart-n-successful-hero-badge {
    display: inline-block;
    background: rgba(196, 147, 55, 0.15);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.smart-n-successful-hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.smart-n-successful-hero-heading {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
}

.smart-n-successful-hero-heading span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.smart-n-successful-hero-heading span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.2;
    z-index: -1;
}

.smart-n-successful-hero-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.smart-n-successful-hero-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.smart-n-successful-btn.btn-secondary {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.smart-n-successful-btn.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.smart-n-successful-hero-image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.smart-n-successful-hero-img-container {
    position: relative;
    padding-top: 20px;
}

.smart-n-successful-hero-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(196, 147, 55, 0.15);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.smart-n-successful-hero-main-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(196, 147, 55, 0.2);
}

.smart-n-successful-hero-stats {
    position: absolute;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(196, 147, 55, 0.1);
    padding: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.smart-n-successful-hero-stats:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(196, 147, 55, 0.15);
}

.smart-n-successful-hero-stats-1 {
    top: 30px;
    left: -30px;
    min-width: 180px;
}

.smart-n-successful-hero-stats-2 {
    bottom: 50px;
    right: -30px;
    min-width: 200px;
}

.smart-n-successful-stats-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.smart-n-successful-stats-icon i {
    color: white;
    font-size: 1.2rem;
}

.smart-n-successful-stats-text {
    font-family: var(--font-secondary);
}

.smart-n-successful-stats-number {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 2px;
    line-height: 1;
}

.smart-n-successful-stats-label {
    font-size: 0.8rem;
    color: #777;
}

.smart-n-successful-hero-floating-icon {
    position: absolute;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 25px rgba(196, 147, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.smart-n-successful-hero-floating-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.smart-n-successful-icon-1 {
    top: 30%;
    left: -30px;
    animation-delay: 0s;
}

.smart-n-successful-icon-2 {
    top: 20%;
    right: -20px;
    animation-delay: 0.5s;
}

.smart-n-successful-icon-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.smart-n-successful-hero-brands {
    margin-top: 60px;
    text-align: center;
}

.smart-n-successful-brands-heading {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.smart-n-successful-brands-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.smart-n-successful-brand-logo {
    max-width: 120px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.smart-n-successful-brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Socials Grid Animation */
.smart-n-successful-socials-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
}

.smart-n-successful-social-icon {
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
    animation: socialFloat 5s ease-in-out infinite;
}

@keyframes socialFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(10px, -10px) rotate(10deg);
        opacity: 0.8;
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {

    .smart-n-successful-hero-text,
    .smart-n-successful-hero-image {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .smart-n-successful-hero-text {
        margin-bottom: 50px;
    }

    .smart-n-successful-hero-heading {
        font-size: 2.8rem;
    }

    .smart-n-successful-hero-img-container {
        max-width: 70%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .smart-n-successful-hero {
        padding: 100px 0 60px;
    }

    .smart-n-successful-hero-heading {
        font-size: 2.3rem;
    }

    .smart-n-successful-hero-description {
        font-size: 1rem;
    }

    .smart-n-successful-hero-img-container {
        max-width: 90%;
    }

    .smart-n-successful-hero-stats-1 {
        top: 10px;
        left: -10px;
    }

    .smart-n-successful-hero-stats-2 {
        bottom: 30px;
        right: -10px;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-hero-heading {
        font-size: 2rem;
    }

    .smart-n-successful-hero-stats {
        padding: 10px;
    }

    .smart-n-successful-hero-stats-1,
    .smart-n-successful-hero-stats-2 {
        min-width: 150px;
    }

    .smart-n-successful-stats-icon {
        width: 30px;
        height: 30px;
        display: none !important;
    }

    .smart-n-successful-stats-number {
        font-size: 3rem;
    }

    .smart-n-successful-stats-label {
        font-size: 0.7rem;
    }

    .smart-n-successful-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .smart-n-successful-btn.btn-primary,
    .smart-n-successful-btn.btn-secondary {
        width: 100%;
    }

    .smart-n-successful-btn.btn-primary {
        margin-left: 5px;
    }
}

.smart-n-successful-stats-label {
    font-size: 0.7rem;
}

.smart-n-successful-hero-cta {
    flex-direction: column;
    align-items: flex-start;
}






/* Benefits Section Styling */
.smart-n-successful-benefits {
    position: relative;
    padding: 100px 0;
    background-color: var(--gold-lighter);
    overflow: hidden;
}

.smart-n-successful-benefits::before {
    content: '';
    position: absolute;
    right: -5%;
    top: -10%;
    width: 40%;
    height: 70%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: morphShape 15s linear infinite alternate;
}

.smart-n-successful-benefits::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -10%;
    width: 30%;
    height: 60%;
    background: var(--gradient-accent);
    opacity: 0.03;
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    z-index: 0;
    animation: morphShape 20s linear infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    75% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.smart-n-successful-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-benefits-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 70px;
}

.smart-n-successful-benefits-left {
    flex: 0 0 48%;
    max-width: 48%;
}

.smart-n-successful-benefits-badge {
    display: inline-block;
    background: rgba(92, 93, 94, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.smart-n-successful-benefits-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.smart-n-successful-benefits-title span {
    position: relative;
    display: inline-block;
    color: var(--accent);
}

.smart-n-successful-benefits-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent);
    opacity: 0.2;
    z-index: -1;
}

.smart-n-successful-benefits-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.smart-n-successful-benefits-right {
    flex: 0 0 48%;
    max-width: 48%;
}

.smart-n-successful-benefits-image {
    position: relative;
}

.smart-n-successful-benefits-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(196, 147, 55, 0.1);
    transition: all 0.5s ease;
}

.smart-n-successful-benefits-accent {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 140px;
    background: var(--gradient-accent);
    border-radius: 35px;
    z-index: -1;
    opacity: 0.2;
}

.smart-n-successful-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.smart-n-successful-benefit-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(196, 147, 55, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.smart-n-successful-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 147, 55, 0.1);
}

.smart-n-successful-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    z-index: -1;
}

.smart-n-successful-benefit-card:hover::before {
    height: 100%;
}

.smart-n-successful-benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.smart-n-successful-benefit-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: var(--gradient-primary);
    opacity: 0.1;
    transform: rotate(-10deg);
    transition: all 0.3s ease;
}

.smart-n-successful-benefit-card:hover .smart-n-successful-benefit-icon-bg {
    transform: rotate(0deg);
    opacity: 0.15;
}

.smart-n-successful-benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.smart-n-successful-benefit-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.smart-n-successful-benefit-description {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.smart-n-successful-benefit-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.smart-n-successful-benefit-bullet-icon {
    color: var(--accent);
    font-size: 0.8rem;
    min-width: 18px;
}

.smart-n-successful-benefit-bullet-text {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: #555;
}

.smart-n-successful-benefits-bottom {
    margin-top: 60px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(196, 147, 55, 0.08);
    position: relative;
    overflow: hidden;
}

.smart-n-successful-benefits-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
}

.smart-n-successful-benefits-bottom-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.smart-n-successful-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.smart-n-successful-benefits-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.smart-n-successful-benefits-item-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.smart-n-successful-benefits-item-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

.smart-n-successful-accent-text {
    color: var(--accent);
    font-weight: 600;
}

.smart-n-successful-highlight-text {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {

    .smart-n-successful-benefits-left,
    .smart-n-successful-benefits-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .smart-n-successful-benefits-right {
        margin-top: 30px;
    }

    .smart-n-successful-benefits-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .smart-n-successful-benefits {
        padding: 80px 0;
    }

    .smart-n-successful-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .smart-n-successful-benefits-title {
        font-size: 2rem;
    }

    .smart-n-successful-benefits-description {
        font-size: 1rem;
    }

    .smart-n-successful-benefits-list {
        grid-template-columns: 1fr;
    }

    .smart-n-successful-benefits-bottom {
        padding: 30px 25px;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-benefits-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-benefit-title {
        font-size: 1.2rem;
    }

    .smart-n-successful-benefits-bottom-title {
        font-size: 1.3rem;
    }
}

/* Advantages Section Styling */
.smart-n-successful-advantages {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--gold-lighter) 40%, #f8f3e8 100%);
    overflow: hidden;
}

.smart-n-successful-advantages::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.03;
    z-index: 0;
}

.smart-n-successful-advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-advantages-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.smart-n-successful-advantages-subtitle {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.smart-n-successful-advantages-subtitle::before,
.smart-n-successful-advantages-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--accent);
    opacity: 0.5;
}

.smart-n-successful-advantages-subtitle::before {
    left: -40px;
}

.smart-n-successful-advantages-subtitle::after {
    right: -40px;
}

.smart-n-successful-advantages-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.smart-n-successful-advantages-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.smart-n-successful-advantages-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.smart-n-successful-advantages-content {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.smart-n-successful-advantages-image {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    z-index: 1;
}

.smart-n-successful-advantages-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(196, 147, 55, 0.1);
}

.smart-n-successful-advantages-shape {
    position: absolute;
    z-index: -1;
}

.smart-n-successful-advantages-shape-1 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -40px;
    left: -40px;
    animation: floatShape 6s ease-in-out infinite;
}

.smart-n-successful-advantages-shape-2 {
    width: 80px;
    height: 80px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: -30px;
    right: 30px;
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, -10px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.smart-n-successful-advantages-content-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 5%;
}

.smart-n-successful-advantages-list-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.smart-n-successful-advantages-list-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    height: 70%;
    width: 5px;
    background: var(--gradient-accent);
    border-radius: 2.5px;
}

.smart-n-successful-advantages-list-description {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    margin-top: 50px;
}

.smart-n-successful-advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smart-n-successful-advantages-list-item {
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
    color: #555;
}

.smart-n-successful-advantages-list-item::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
}

.smart-n-successful-emphasis {
    color: var(--primary);
    font-weight: 600;
}

.smart-n-successful-advantages-panel {
    margin-top: 100px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(196, 147, 55, 0.08);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.smart-n-successful-advantages-panel-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.03;
    z-index: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.smart-n-successful-advantages-panel-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.smart-n-successful-advantages-panel-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-advantages-panel-item {
    display: flex;
    align-items: flex-start;
}

.smart-n-successful-advantages-panel-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 10px 20px rgba(196, 147, 55, 0.1);
}

.smart-n-successful-advantages-panel-icon i {
    font-size: 1.5rem;
    color: white;
}

.smart-n-successful-advantages-panel-text h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.smart-n-successful-advantages-panel-text p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Alternate layout for second content block */
.smart-n-successful-advantages-content-alt {
    margin-top: 100px;
    flex-direction: row-reverse;
}

.smart-n-successful-advantages-content-alt .smart-n-successful-advantages-content-right {
    padding-left: 0;
    padding-right: 5%;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .smart-n-successful-advantages-title {
        font-size: 2.4rem;
    }

    .smart-n-successful-advantages-content {
        margin-top: 60px;
    }

    .smart-n-successful-advantages-image,
    .smart-n-successful-advantages-content-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .smart-n-successful-advantages-image {
        margin-bottom: 40px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .smart-n-successful-advantages-content-alt {
        flex-direction: column;
    }

    .smart-n-successful-advantages-panel-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .smart-n-successful-advantages {
        padding: 80px 0;
    }

    .smart-n-successful-advantages-title {
        font-size: 2rem;
    }

    .smart-n-successful-advantages-header {
        margin-bottom: 40px;
    }

    .smart-n-successful-advantages-image {
        max-width: 100%;
    }

    .smart-n-successful-advantages-panel {
        padding: 30px 20px;
        margin-top: 60px;
    }

    .smart-n-successful-advantages-list-title {
        font-size: 1.5rem;
    }

    .smart-n-successful-advantages-panel-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {

    .smart-n-successful-advantages-subtitle::before,
    .smart-n-successful-advantages-subtitle::after {
        display: none;
    }

    .smart-n-successful-advantages-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-advantages-description {
        font-size: 1rem;
    }

    .smart-n-successful-advantages-list-title {
        font-size: 1.4rem;
    }

    .smart-n-successful-advantages-list-item {
        font-size: 1rem;
    }

    .smart-n-successful-advantages-panel-item {
        flex-direction: column;
    }

    .smart-n-successful-advantages-panel-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}


/* Stages Section Styling */
.smart-n-successful-stages {
    position: relative;
    padding: 120px 0;
    background-color: #f7f4ee;
    overflow: hidden;
}

.smart-n-successful-stages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%235C5D5E' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.smart-n-successful-stages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-stages-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    position: relative;
}

.smart-n-successful-stages-pill {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(196, 147, 55, 0.2);
}

.smart-n-successful-stages-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    line-height: 1.2;
}

.smart-n-successful-stages-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.smart-n-successful-stages-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.smart-n-successful-stages-intro-text {
    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);
}

.smart-n-successful-stages-intro-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.smart-n-successful-stages-intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 1.5px;
}

.smart-n-successful-stages-intro-description {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.smart-n-successful-stages-intro-image {
    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);
    position: relative;
}

.smart-n-successful-stages-intro-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(196, 147, 55, 0.1);
}

.smart-n-successful-stages-intro-accent {
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.smart-n-successful-stages-intro-accent-1 {
    top: -30px;
    right: -40px;
}

.smart-n-successful-stages-intro-accent-2 {
    bottom: -30px;
    left: -40px;
}

.smart-n-successful-stages-timeline {

    position: relative;
    margin-bottom: 80px;
}

.smart-n-successful-stages-timeline-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

.smart-n-successful-stages-timeline-line {
    position: absolute;
    top: 120px;
    left: 50%;
    width: 6px;
    height: calc(100% - 170px);
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 3px;
    transform: translateX(-50%);
}

.smart-n-successful-stages-timeline-items {
    position: relative;
    z-index: 1;
}

.smart-n-successful-stages-timeline-item {
    display: flex;
    margin-bottom: 80px;

}

.smart-n-successful-stages-timeline-item:last-child {
    margin-bottom: 0;
}

.smart-n-successful-stages-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.smart-n-successful-stages-timeline-item:nth-child(even) .smart-n-successful-stages-timeline-content {
    padding-left: 30px;
    padding-right: 50px;
    text-align: right;
}


.smart-n-successful-stages-timeline-item:nth-child(even) .smart-n-successful-stages-timeline-content .smart-n-successful-stages-timeline-description {
    text-align: left;
}

.smart-n-successful-stages-timeline-item:nth-child(even) .smart-n-successful-stages-timeline-content::before {
    left: auto;
    right: 0;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.smart-n-successful-stages-timeline-item:nth-child(even) .smart-n-successful-stages-timeline-number {
    left: auto;
    right: 20px;
}

.smart-n-successful-stages-timeline-col {
    flex: 0 0 50%;
    max-width: 50%;
}

.smart-n-successful-stages-timeline-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(196, 147, 55, 0.05);
    position: relative;
    padding-left: 50px;

    z-index: 1;
}

.smart-n-successful-stages-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 147, 55, 0.1);
}

.smart-n-successful-stages-timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
    transform: translateX(-100%);
}

.smart-n-successful-stages-timeline-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(196, 147, 55, 0.3);
}

.smart-n-successful-stages-timeline-dot {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--accent);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(196, 147, 55, 0.3);
}

.smart-n-successful-stages-timeline-stage {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    margin-right: 20px;
}

.smart-n-successful-stages-timeline-title-item {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.smart-n-successful-stages-timeline-description {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.smart-n-successful-stages-cta {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(196, 147, 55, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.smart-n-successful-stages-cta-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.03;
    z-index: 0;
}

.smart-n-successful-stages-cta-accent-1 {
    top: -150px;
    left: -150px;
}

.smart-n-successful-stages-cta-accent-2 {
    bottom: -150px;
    right: -150px;
    background: var(--gradient-accent);
}

.smart-n-successful-stages-cta-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-stages-cta-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.smart-n-successful-stages-cta-btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(196, 147, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.smart-n-successful-stages-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(196, 147, 55, 0.4);
}

.smart-n-successful-stages-cta-btn i {
    margin-left: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .smart-n-successful-stages-title {
        font-size: 2.4rem;
    }

    .smart-n-successful-stages-intro-text,
    .smart-n-successful-stages-intro-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .smart-n-successful-stages-intro-image {
        margin-top: 30px;
    }

    .smart-n-successful-stages-intro {
        margin-bottom: 60px;
        gap: 0;
    }

    .smart-n-successful-stages-timeline-line {
        left: 20px;
        transform: none;
    }

    .smart-n-successful-stages-timeline-item,
    .smart-n-successful-stages-timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .smart-n-successful-stages-timeline-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 40px;
    }

    .smart-n-successful-stages-timeline-dot {
        left: 20px;
        transform: none;
    }

    .smart-n-successful-stages-timeline-content,
    .smart-n-successful-stages-timeline-item:nth-child(even) .smart-n-successful-stages-timeline-content {
        padding-left: 30px;
        padding-right: 30px;
        text-align: left;
    }

    .smart-n-successful-stages-timeline-content::before,
    .smart-n-successful-stages-timeline-item:nth-child(even) .smart-n-successful-stages-timeline-content::before {
        display: none;
    }

    .smart-n-successful-stages-timeline-number,
    .smart-n-successful-stages-timeline-item:nth-child(even) .smart-n-successful-stages-timeline-number {
        left: 20px;
        right: auto;
    }

    .smart-n-successful-stages-cta {
        padding: 40px 30px;
    }

    .smart-n-successful-stages-cta-title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .smart-n-successful-stages {
        padding: 80px 0;
    }

    .smart-n-successful-stages-title {
        font-size: 2rem;
    }

    .smart-n-successful-stages-intro-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-stages-timeline-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-stages-timeline-title-item {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-stages-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-stages-intro-title {
        font-size: 1.5rem;
    }

    .smart-n-successful-stages-cta-title {
        font-size: 1.5rem;
    }

    .smart-n-successful-stages-timeline-title {
        font-size: 1.5rem;
    }

    .smart-n-successful-stages-timeline-item {
        margin-bottom: 60px;
    }

    .smart-n-successful-stages-timeline-title-item {
        font-size: 1.2rem;
    }

    .smart-n-successful-stages-cta-btn {
        width: 100%;
    }
}



/* Who Uses Section Styling */
.smart-n-successful-users {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gold-lighter) 0%, #f8f5f0 100%);
    overflow: hidden;
}

.smart-n-successful-users::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235C5D5E' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.smart-n-successful-users-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-users-header {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.smart-n-successful-users-badge {
    display: inline-block;
    background: rgba(196, 147, 55, 0.15);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
}

.smart-n-successful-users-badge::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
}

.smart-n-successful-users-badge::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
}

.smart-n-successful-users-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.smart-n-successful-users-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.smart-n-successful-users-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.smart-n-successful-users-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.smart-n-successful-users-text {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
}

.smart-n-successful-users-text-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.smart-n-successful-users-text-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.smart-n-successful-users-text-description {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.smart-n-successful-users-image {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    position: relative;
}

.smart-n-successful-users-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(196, 147, 55, 0.1);
    border: 10px solid white;
}

.smart-n-successful-users-img-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    opacity: 0.07;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.smart-n-successful-users-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.smart-n-successful-users-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(196, 147, 55, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.smart-n-successful-users-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 147, 55, 0.1);
}

.smart-n-successful-users-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.smart-n-successful-users-card:hover .smart-n-successful-users-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.smart-n-successful-users-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.smart-n-successful-users-card-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.smart-n-successful-users-card-description {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
}

.smart-n-successful-users-card-examples {
    margin-top: 15px;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: #777;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.smart-n-successful-users-card-badge {
    display: inline-block;
    background: rgba(92, 93, 94, 0.07);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.smart-n-successful-users-card:hover .smart-n-successful-users-card-badge {
    background: rgba(92, 93, 94, 0.1);
}

.smart-n-successful-users-benefits {
    margin-top: 80px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(196, 147, 55, 0.07);
    position: relative;
    overflow: hidden;
}

.smart-n-successful-users-benefits::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    opacity: 0.05;
    border-radius: 0 0 0 200px;
    z-index: 0;
}

.smart-n-successful-users-benefits-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.smart-n-successful-users-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.smart-n-successful-users-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.smart-n-successful-users-benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gold-lighter);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.smart-n-successful-users-benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 15px;
    z-index: -1;
}

.smart-n-successful-users-benefit-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.smart-n-successful-users-benefit-content h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.smart-n-successful-users-benefit-content p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .smart-n-successful-users-title {
        font-size: 2.4rem;
    }

    .smart-n-successful-users-text,
    .smart-n-successful-users-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .smart-n-successful-users-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .smart-n-successful-users-content {
        gap: 40px;
    }

    .smart-n-successful-users-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .smart-n-successful-users-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .smart-n-successful-users {
        padding: 80px 0;
    }

    .smart-n-successful-users-title {
        font-size: 2rem;
    }

    .smart-n-successful-users-text-title {
        font-size: 1.6rem;
    }

    .smart-n-successful-users-image {
        max-width: 100%;
    }

    .smart-n-successful-users-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .smart-n-successful-users-benefits {
        padding: 30px 20px;
    }

    .smart-n-successful-users-benefits-title {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-users-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-users-text-title {
        font-size: 1.4rem;
    }

    .smart-n-successful-users-benefits-title {
        font-size: 1.4rem;
    }

    .smart-n-successful-users-benefit-item {
        flex-direction: column;
        gap: 15px;
    }

    .smart-n-successful-users-benefit-icon {
        margin: 0 auto;
    }

    .smart-n-successful-users-benefit-content h4 {
        text-align: center;
    }
}


/* Services Section Styling */
.smart-n-successful-services {
    position: relative;
    padding: 120px 0;
    background-color: #faf8f4;
    overflow: hidden;
}

.smart-n-successful-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(92, 93, 94, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 93, 94, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.smart-n-successful-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.smart-n-successful-services-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(196, 147, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.smart-n-successful-services-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.smart-n-successful-services-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.smart-n-successful-services-title span {
    position: relative;
    display: inline-block;
    color: var(--accent);
}

.smart-n-successful-services-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.2;
    z-index: -1;
}

.smart-n-successful-services-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.smart-n-successful-services-main {
    margin-bottom: 100px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(196, 147, 55, 0.05);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.smart-n-successful-services-main-image {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    overflow: hidden;
}

.smart-n-successful-services-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.smart-n-successful-services-main:hover .smart-n-successful-services-main-img {
    transform: scale(1.05);
}

.smart-n-successful-services-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(92, 93, 94, 0.2), rgba(92, 93, 94, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-n-successful-services-main-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.smart-n-successful-services-main:hover .smart-n-successful-services-main-icon {
    transform: scale(1.1);
}

.smart-n-successful-services-main-icon i {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smart-n-successful-services-main-content {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 60px;
}

.smart-n-successful-services-main-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.smart-n-successful-services-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 1.5px;
}

.smart-n-successful-services-main-paragraph {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.smart-n-successful-services-main-cta {
    margin-top: 30px;
}

.smart-n-successful-services-cta-btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(196, 147, 55, 0.3);
    transition: all 0.3s ease;
}

.smart-n-successful-services-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(196, 147, 55, 0.4);
}

.smart-n-successful-services-cta-btn i {
    margin-left: 10px;
}

.smart-n-successful-services-google {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.smart-n-successful-services-google-content {
    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);
}

.smart-n-successful-services-google-subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
}

.smart-n-successful-services-google-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.smart-n-successful-services-google-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.smart-n-successful-services-google-paragraph {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.smart-n-successful-services-google-features {
    margin-top: 30px;
}

.smart-n-successful-services-google-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.smart-n-successful-services-google-feature:last-child {
    margin-bottom: 0;
}

.smart-n-successful-services-google-feature-icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 4px;
}

.smart-n-successful-services-google-feature-icon i {
    font-size: 0.7rem;
    color: white;
}

.smart-n-successful-services-google-feature-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.smart-n-successful-services-google-image {
    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);
    position: relative;
}

.smart-n-successful-services-google-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(196, 147, 55, 0.1);
    position: relative;
    z-index: 1;
}

.smart-n-successful-services-google-shape {
    position: absolute;
    z-index: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.smart-n-successful-services-google-shape-1 {
    background: var(--gradient-primary);
    opacity: 0.05;
    top: -30px;
    right: -30px;
}

.smart-n-successful-services-google-shape-2 {
    background: var(--gradient-accent);
    opacity: 0.05;
    bottom: -30px;
    left: -30px;
}

.smart-n-successful-services-google-cta {
    margin-top: 30px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .smart-n-successful-services-title {
        font-size: 2.5rem;
    }

    .smart-n-successful-services-main-image {
        flex: 0 0 100%;
        max-width: 100%;
        height: 300px;
    }

    .smart-n-successful-services-main-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 40px;
    }

    .smart-n-successful-services-main-title {
        font-size: 2rem;
    }

    .smart-n-successful-services-google-content,
    .smart-n-successful-services-google-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .smart-n-successful-services-google-image {
        order: -1;
        margin-bottom: 30px;
    }

    .smart-n-successful-services-google {
        gap: 0;
    }

    .smart-n-successful-services-google-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .smart-n-successful-services {
        padding: 80px 0;
    }

    .smart-n-successful-services-title {
        font-size: 2.2rem;
    }

    .smart-n-successful-services-main {
        margin-bottom: 60px;
    }

    .smart-n-successful-services-main-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-services-google-title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-services-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-services-main-content {
        padding: 30px 20px;
    }

    .smart-n-successful-services-main-title {
        font-size: 1.6rem;
    }

    .smart-n-successful-services-google-title {
        font-size: 1.6rem;
    }

    .smart-n-successful-services-cta-btn {
        width: 100%;
        text-align: center;
    }
}




/* Advantages Banner Styling */
.smart-n-successful-advantages-banner {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-primary);
    overflow: hidden;
    color: white;
}

.smart-n-successful-advantages-banner::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.smart-n-successful-advantages-banner::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.smart-n-successful-advantages-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-advantages-banner-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.smart-n-successful-advantages-banner-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.smart-n-successful-advantages-banner-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 1.5px;
}

.smart-n-successful-advantages-banner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.smart-n-successful-advantages-banner-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.smart-n-successful-advantages-banner-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.smart-n-successful-advantages-banner-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.smart-n-successful-advantages-banner-item:hover .smart-n-successful-advantages-banner-icon {
    transform: scale(1.1);
}

.smart-n-successful-advantages-banner-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.smart-n-successful-advantages-banner-text {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.smart-n-successful-advantages-banner-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.smart-n-successful-advantages-banner-cta {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.smart-n-successful-advantages-banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.smart-n-successful-advantages-banner-cta:hover {
    color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.smart-n-successful-advantages-banner-cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.smart-n-successful-advantages-banner-cta i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.smart-n-successful-advantages-banner-cta:hover i {
    transform: translateX(5px);
}

.smart-n-successful-advantages-banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.smart-n-successful-advantages-banner-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .smart-n-successful-advantages-banner-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .smart-n-successful-advantages-banner-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .smart-n-successful-advantages-banner {
        padding: 80px 0;
    }

    .smart-n-successful-advantages-banner-title {
        font-size: 2rem;
    }

    .smart-n-successful-advantages-banner-list {
        gap: 20px;
    }

    .smart-n-successful-advantages-banner-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-advantages-banner-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-advantages-banner-item {
        padding: 20px;
    }

    .smart-n-successful-advantages-banner-icon {
        width: 60px;
        height: 60px;
    }

    .smart-n-successful-advantages-banner-text {
        font-size: 1rem;
    }

    .smart-n-successful-advantages-banner-description {
        font-size: 1rem;
    }

    .smart-n-successful-advantages-banner-cta {
        width: 100%;
        text-align: center;
    }
}

/* Footer Styling */
.smart-n-successful-footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.smart-n-successful-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-accent);
}

.smart-n-successful-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.smart-n-successful-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.smart-n-successful-footer-col {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
}

.smart-n-successful-footer-logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.smart-n-successful-footer-logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.smart-n-successful-footer-description {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.smart-n-successful-footer-social {
    display: flex;
    gap: 15px;
}

.smart-n-successful-footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.smart-n-successful-footer-social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.smart-n-successful-footer-social-link i {
    font-size: 1rem;
}

.smart-n-successful-footer-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.smart-n-successful-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.smart-n-successful-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smart-n-successful-footer-link-item {
    margin-bottom: 12px;
}

.smart-n-successful-footer-link {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.smart-n-successful-footer-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.smart-n-successful-footer-link i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.smart-n-successful-footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.smart-n-successful-footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.smart-n-successful-footer-contact-icon i {
    font-size: 1rem;
    color: var(--accent);
}

.smart-n-successful-footer-contact-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.smart-n-successful-footer-contact-text a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.smart-n-successful-footer-contact-text a:hover {
    color: var(--accent);
}

.smart-n-successful-footer-newsletter {
    margin-top: 20px;
    margin-bottom: 10px;
}

.smart-n-successful-footer-newsletter-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.smart-n-successful-footer-form {
    display: flex;
}

.smart-n-successful-footer-input {
    flex-grow: 1;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px 0 0 5px;
    padding: 0 15px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: white;
    outline: none;
}

.smart-n-successful-footer-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.smart-n-successful-footer-submit {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border: none;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.smart-n-successful-footer-submit:hover {
    background: var(--accent-dark);
}

.smart-n-successful-footer-submit i {
    font-size: 1rem;
    color: var(--primary);
}

.smart-n-successful-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.smart-n-successful-footer-copyright {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.smart-n-successful-footer-legal {
    display: flex;
    gap: 20px;
}

.smart-n-successful-footer-legal-link {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.smart-n-successful-footer-legal-link:hover {
    color: var(--accent);
}

.smart-n-successful-footer-back-to-top {
    position: absolute;
    right: 30px;
    bottom: 90px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.smart-n-successful-footer-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.smart-n-successful-footer-back-to-top i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .smart-n-successful-footer-col {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .smart-n-successful-footer {
        padding: 60px 0 30px;
    }

    .smart-n-successful-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .smart-n-successful-footer-legal {
        justify-content: center;
    }

    .smart-n-successful-footer-back-to-top {
        right: 20px;
        bottom: 80px;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-footer-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .smart-n-successful-footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}



/* Legal Pages Styling */
.smart-n-successful-legal-page {
    position: relative;
    padding: 120px 0 80px;
    background-color: #faf8f4;
}

.smart-n-successful-legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    z-index: 0;
}

.smart-n-successful-legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-legal-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.smart-n-successful-legal-badge {
    display: inline-block;
    background: rgba(92, 93, 94, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.smart-n-successful-legal-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.smart-n-successful-legal-updated {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 0;
}

.smart-n-successful-legal-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(196, 147, 55, 0.05);
}

.smart-n-successful-legal-section {
    margin-bottom: 40px;
}

.smart-n-successful-legal-section:last-child {
    margin-bottom: 0;
}

.smart-n-successful-legal-section-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.smart-n-successful-legal-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.smart-n-successful-legal-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.smart-n-successful-legal-text:last-child {
    margin-bottom: 0;
}

.smart-n-successful-legal-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.smart-n-successful-legal-list li {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.smart-n-successful-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.smart-n-successful-legal-table th {
    background: rgba(92, 93, 94, 0.05);
    color: var(--primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.smart-n-successful-legal-table td {
    font-family: var(--font-secondary);
    font-size: 1rem;
    padding: 15px;
    border: 1px solid #e5e5e5;
    color: #555;
}

.smart-n-successful-legal-table tr:hover td {
    background: rgba(196, 147, 55, 0.05);
}

.smart-n-successful-legal-contact {
    background: rgba(92, 93, 94, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
}

.smart-n-successful-legal-contact p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.smart-n-successful-legal-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.smart-n-successful-legal-contact a:hover {
    color: var(--accent);
}

.smart-n-successful-legal-footer {
    margin-top: 50px;
    text-align: center;
}

.smart-n-successful-legal-back {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.smart-n-successful-legal-back i {
    margin-right: 10px;
}

.smart-n-successful-legal-back:hover {
    color: var(--accent);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .smart-n-successful-legal-page {
        padding: 100px 0 60px;
    }

    .smart-n-successful-legal-title {
        font-size: 2rem;
    }

    .smart-n-successful-legal-content {
        padding: 30px;
    }

    .smart-n-successful-legal-section-title {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-legal-page {
        padding: 80px 0 40px;
    }

    .smart-n-successful-legal-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-legal-section-title {
        font-size: 1.2rem;
    }

    .smart-n-successful-legal-table {
        display: block;
        overflow-x: auto;
    }
}








/* Contact Section Styling */
.smart-n-successful-contact {
    position: relative;
    padding: 100px 0;
    background-color: #f7f4ee;
    overflow: hidden;
}

.smart-n-successful-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235C5D5E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.smart-n-successful-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.smart-n-successful-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.smart-n-successful-contact-subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.smart-n-successful-contact-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.smart-n-successful-contact-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.smart-n-successful-contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.smart-n-successful-contact-info {
    flex: 0 0 calc(40% - 15px);
    max-width: calc(40% - 15px);
}

.smart-n-successful-contact-info-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.smart-n-successful-contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 1.5px;
}

.smart-n-successful-contact-info-text {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.smart-n-successful-contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(196, 147, 55, 0.05);
    margin-bottom: 30px;
}

.smart-n-successful-contact-card:last-child {
    margin-bottom: 0;
}

.smart-n-successful-contact-card-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.smart-n-successful-contact-card-title i {
    width: 35px;
    height: 35px;
    background: rgba(92, 93, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.smart-n-successful-contact-card-content {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.smart-n-successful-contact-card-content a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.smart-n-successful-contact-card-content a:hover {
    color: var(--accent);
}

.smart-n-successful-contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.smart-n-successful-contact-social-link {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.smart-n-successful-contact-social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.smart-n-successful-contact-form {
    flex: 0 0 calc(60% - 15px);
    max-width: calc(60% - 15px);
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(196, 147, 55, 0.08);
}

.smart-n-successful-contact-form-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.smart-n-successful-contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 1.5px;
}

.smart-n-successful-form-group {
    margin-bottom: 20px;
}

.smart-n-successful-form-group:last-child {
    margin-bottom: 0;
}

.smart-n-successful-form-group-flex {
    display: flex;
    gap: 20px;
}

.smart-n-successful-form-group-flex>div {
    flex: 1;
}

.smart-n-successful-form-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.smart-n-successful-form-label span {
    color: var(--accent);
}

.smart-n-successful-form-input,
.smart-n-successful-form-textarea,
.smart-n-successful-form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.smart-n-successful-form-input:focus,
.smart-n-successful-form-textarea:focus,
.smart-n-successful-form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(92, 93, 94, 0.1);
    outline: none;
}

.smart-n-successful-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.smart-n-successful-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235C5D5E' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.smart-n-successful-form-submit {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    background: var(--gradient-accent);
    color: var(--dark);
    border: none;
    box-shadow: 0 10px 20px rgba(196, 147, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.smart-n-successful-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(196, 147, 55, 0.4);
}

.smart-n-successful-form-submit i {
    margin-right: 10px;
}

.smart-n-successful-contact-map {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(196, 147, 55, 0.05);
    margin-top: 80px;
}

.smart-n-successful-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .smart-n-successful-contact-title {
        font-size: 2.4rem;
    }

    .smart-n-successful-contact-info,
    .smart-n-successful-contact-form {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .smart-n-successful-contact-info {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .smart-n-successful-contact {
        padding: 80px 0;
    }

    .smart-n-successful-contact-title {
        font-size: 2rem;
    }

    .smart-n-successful-contact-form {
        padding: 30px 20px;
    }

    .smart-n-successful-form-group-flex {
        flex-direction: column;
        gap: 20px;
    }

    .smart-n-successful-contact-map {
        height: 350px;
        margin-top: 60px;
    }
}

@media screen and (max-width: 576px) {
    .smart-n-successful-contact-title {
        font-size: 1.8rem;
    }

    .smart-n-successful-contact-info-title,
    .smart-n-successful-contact-form-title {
        font-size: 1.3rem;
    }

    .smart-n-successful-contact-map {
        height: 300px;
    }
}






/* Blur and visibility classes for animations */
.autoBLur {
    opacity: 0.3;
    filter: blur(40px);
}

.isVisible {
    opacity: 1 !important;
    filter: blur(0px) !important;
}

.smart-n-successful-stages-timeline-item {
    position: relative;
    transition: all 0.5s ease;
}

.smart-n-successful-stages-timeline-content {
    transition: all 0.5s ease;
}



/* Coming Soon / Under Construction Page Styling */
.smart-n-successful-coming-soon {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f7f4ee 0%, #f0ebe0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.smart-n-successful-coming-soon::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.03;
    z-index: 0;
}

.smart-n-successful-coming-soon::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.05;
    z-index: 0;
}

.smart-n-successful-coming-soon-content {
    max-width: 700px;
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(196, 147, 55, 0.1);
    position: relative;
    z-index: 1;
}

.smart-n-successful-coming-soon-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.smart-n-successful-coming-soon-logo img {
    max-height: 60px;
}

.smart-n-successful-coming-soon-badge {
    display: inline-block;
    background: rgba(196, 147, 55, 0.15);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.smart-n-successful-coming-soon-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.smart-n-successful-coming-soon-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.smart-n-successful-coming-soon-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.smart-n-successful-coming-soon-button {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.smart-n-successful-coming-soon-button-primary {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(196, 147, 55, 0.3);
}

.smart-n-successful-coming-soon-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(196, 147, 55, 0.4);
}

.smart-n-successful-coming-soon-button-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.smart-n-successful-coming-soon-button-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(92, 93, 94, 0.2);
}

.smart-n-successful-coming-soon-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 30px;
    opacity: 0.8;
}

.smart-n-successful-coming-soon-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.smart-n-successful-coming-soon-social-link {
    width: 40px;
    height: 40px;
    background: rgba(92, 93, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.smart-n-successful-coming-soon-social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Flying Elements Animation */
.smart-n-successful-coming-soon-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.smart-n-successful-coming-soon-element {
    position: absolute;
    z-index: 0;
    opacity: 0.08;
}

.smart-n-successful-coming-soon-element-1 {
    top: 20%;
    left: 10%;
    font-size: 3rem;
    animation: float1 8s ease-in-out infinite;
    color: var(--primary);
}

.smart-n-successful-coming-soon-element-2 {
    top: 70%;
    left: 15%;
    font-size: 2.5rem;
    animation: float2 10s ease-in-out infinite;
    color: var(--accent);
}

.smart-n-successful-coming-soon-element-3 {
    top: 30%;
    right: 15%;
    font-size: 2rem;
    animation: float3 7s ease-in-out infinite;
    color: var(--primary);
}

.smart-n-successful-coming-soon-element-4 {
    top: 60%;
    right: 10%;
    font-size: 3.5rem;
    animation: float4 12s ease-in-out infinite;
    color: var(--accent);
}

.smart-n-successful-coming-soon-element-5 {
    top: 40%;
    left: 35%;
    font-size: 2.2rem;
    animation: float1 9s ease-in-out infinite;
    color: var(--primary);
}

.smart-n-successful-coming-soon-element-6 {
    top: 25%;
    right: 35%;
    font-size: 2.8rem;
    animation: float3 11s ease-in-out infinite;
    color: var(--accent);
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, -30px) rotate(-5deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-15px, 20px) rotate(-8deg);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(25px, 25px) rotate(8deg);
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .smart-n-successful-coming-soon-content {
        padding: 40px 30px;
    }

    .smart-n-successful-coming-soon-title {
        font-size: 2.5rem;
    }

    .smart-n-successful-coming-soon-icon {
        font-size: 4rem;
    }

    .smart-n-successful-coming-soon-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .smart-n-successful-coming-soon-button {
        width: 100%;
    }

    .logo-image-full {
        height: 50px !important;
        width: auto;
    }

}

@media screen and (max-width: 576px) {
    .smart-n-successful-coming-soon-title {
        font-size: 2rem;
    }

    .smart-n-successful-coming-soon-description {
        font-size: 1rem;
    }

    .smart-n-successful-coming-soon-icon {
        font-size: 3.5rem;
    }
}



.smart-n-successful-logo {
    display: block;
    text-decoration: none;
}

.logo-image-full {
    height: 75px;
    width: auto;
}




.smart-n-successful-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.smart-n-successful-cookie-banner.show {
    transform: translateY(0);
}

.smart-n-successful-cookie-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.smart-n-successful-cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.smart-n-successful-cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.smart-n-successful-cookie-btn {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.smart-n-successful-cookie-btn:hover {
    background: var(--accent-light);
}