        :root {
            --primary-color: #10b981;
            --primary-hover: #047857;        
            --accent-glow: rgba(16, 185, 129, 0.2);
            --accent-glow-strong: rgba(16, 185, 129, 0.4);
            

            --bg-color: #ffffff;
            --bg-secondary: #f9fafb;        
            --text-main: #111827;            
            --text-muted: #4b5563;           
            --border-color: #e5e7eb;        
            
            --content-width: 800px;          
            --padding-horizontal: 24px;
            --font-family: 'Inter', sans-serif;
            --radius-lg: 16px;
            --radius-md: 8px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 20px 40px -5px rgba(16, 185, 129, 0.15);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background: radial-gradient(circle at 50% 0%, #ecfdf5 0%, #ffffff 60%);
            background-attachment: fixed;
            color: var(--text-main);
            font-family: var(--font-family);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        a {
            color: inherit;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }


        .notion-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.85); 
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(229, 231, 235, 0.5);
            padding: 20px var(--padding-horizontal);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        
        .nav-link {
            font-size: 15px;
            font-weight: 600;
            color: #4b5563;
        }
        
        .nav-link:hover {
            color: var(--text-main);
        }

        .nav-portal-button {
            background-color: #111827;
            color: #fff;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.2s, background-color 0.2s;
        }
        
        .nav-portal-button:hover {
            transform: translateY(-2px);
            background-color: #000;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }

        .nav-contact-button {
            background-color: #111827;
            color: #fff;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.2s, background-color 0.2s;
        }
        
        .nav-contact-button:hover {
            transform: translateY(-2px);
            background-color: #000;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .notion-contact-button-hero {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
            color: white;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            margin-top: 20px;
            box-shadow: 0 4px 14px var(--accent-glow);
            transition: all 0.3s ease;
        }
        .notion-contact-button-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
        }

        .hamburger-menu {
            display: none;
            font-size: 24px;
            color: var(--text-main);
            cursor: pointer;
        }

        .notion-page-container {
            max-width: 100%;
            padding-inline: var(--padding-horizontal);
        }

        .notion-content {
            max-width: var(--content-width);
            margin: 0 auto;
            padding-bottom: 100px;
        }

        .notion-header {
            max-width: var(--content-width);
            margin: 0 auto;
            padding-top: 160px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #ecfdf5;
            color: #047857;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 32px;
        }

        .notion-title {
            font-size: 60px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
            color: #111827;
        }
        
 
        .text-green {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        
        .notion-portal-button-hero {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
            color: white;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            margin-top: 20px;
            box-shadow: 0 4px 14px var(--accent-glow);
            transition: all 0.3s ease;
        }
        .notion-portal-button-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
        }
        


        .notion-heading {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-top: 80px;
            margin-bottom: 20px;
            padding-top: 20px;
        }

        .notion-text {
            font-size: 17px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }
        
        .notion-text-bold {
            font-weight: 600;
            color: var(--text-main);
        }

        .notion-text-tertiary {
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 500;
        }

 
        .notion-process-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin: 40px 0;
        }

        .notion-list-item {
            background: #fff;
            padding: 24px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .step-number-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background-color: rgba(5, 150, 105, 0.1);
            color: var(--primary-color);
            margin-bottom: 16px;
            font-size: 20px;
        }
        

        @media (min-width: 769px) {
            .notion-process-list {
                display: flex;
                justify-content: space-between;
                position: relative;
                gap: 0;
            }
            
            .notion-list-item {
                flex: 1;
                border: none;
                background: transparent;
                box-shadow: none;
                text-align: center;
                position: relative;
                padding: 0 10px;
            }
            
            .notion-list-item:hover {
                transform: translateY(-5px);
            }

            .notion-list-item::after {
                content: '';
                position: absolute;
                top: 24px;
                right: -50%;
                width: 100%;
                height: 2px;
                background: repeating-linear-gradient(90deg, #e5e7eb 0, #e5e7eb 6px, transparent 6px, transparent 12px);
                z-index: -1;
            }
            
            .notion-list-item:last-child::after { display: none; }

            .step-number-icon {
                margin: 0 auto 16px auto;
                background: #fff;
                border: 1px solid var(--border-color);
                box-shadow: 0 4px 6px rgba(0,0,0,0.05);
                width: 56px;
                height: 56px;
            }
        }


        .notion-gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }

        .notion-gallery-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(229, 231, 235, 0.8);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .notion-gallery-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
            background: #fff;
        }
        
  
        .notion-gallery-card.popular {
            border: 2px solid var(--primary-color);
            background: #fff;
            transform: scale(1.05);
            z-index: 10;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(16, 185, 129, 0.1);
        }
        
        .card-icon {
            font-size: 28px;
            margin-bottom: 16px;
            color: var(--primary-color);
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .card-price {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .card-features {
            list-style: none;
            padding: 0;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .card-features li {
            margin-bottom: 12px;
            font-size: 15px;
            display: flex;
            align-items: start;
            color: var(--text-muted);
        }
        
        .card-features li i {
            margin-right: 12px;
            font-size: 14px;
            margin-top: 4px;
        }

        .card-features .check i { color: var(--primary-color); }
        .card-features .cross i { color: #d1d5db; }

        .card-disclosures {
            font-size: 12px;
            color: #9ca3af;
            margin-bottom: 20px;
            border-top: 1px solid var(--border-color);
            padding-top: 16px;
        }
        .card-disclosures li { margin-bottom: 4px; list-style: none; }
        
        .notion-cta-button {
            display: block;
            background-color: transparent;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            padding: 12px;
            border-radius: var(--radius-md);
            margin-top: auto;
            transition: all 0.2s;
        }

        .notion-cta-button:hover, 
        .notion-gallery-card.popular .notion-cta-button {
            background-color: var(--primary-color);
            color: #fff;
        }

   
        .notion-testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin: 24px 0 40px 0;
        }

        .testimonial-card {
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px;
            background-color: #fff;
            box-shadow: var(--shadow-sm);
        }
        
        .testimonial-card i { color: var(--primary-color); margin-bottom: 12px; display: block; opacity: 0.5;}
        
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 16px;
            font-size: 15px;
            color: var(--text-main);
        }

        .notion-team-container {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin: 32px 0 48px 0;
            justify-content: flex-start;
        }

        .team-member {
            text-align: center;
            transition: transform 0.2s;
        }
        .team-member:hover { transform: translateY(-5px); }

        .team-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin: 0 auto 16px auto;
            overflow: hidden;
            border: 2px solid var(--primary-color);
            padding: 2px;
            background-color: #fff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .team-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
        
 
        .notion-toggle {
            border: 1px solid var(--border-color);
            margin-bottom: 8px;
            border-radius: var(--radius-md);
            cursor: pointer;
            display: block;
            background-color: #fff;
            transition: all 0.2s;
        }
        
        .notion-toggle:hover {
            border-color: #d1d5db;
        }

        .toggle-header {
            display: flex;
            align-items: center;
            padding: 16px;
            font-weight: 600;
            color: var(--text-main);
            transition: background 0.2s;
            border-radius: var(--radius-md);
        }

        .toggle-arrow {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 12px;
            color: var(--primary-color);
            background: rgba(5, 150, 105, 0.1);
            border-radius: 50%;
            transition: transform 0.2s ease;
        }
        

        .toggle-input:checked + .toggle-header {
            background-color: #f0fdf4;
            color: var(--primary-color);
        }
        
        .toggle-input:checked + .toggle-header .toggle-arrow {
            transform: rotate(90deg);
        }

        .toggle-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 16px;
            font-size: 15px;
            color: var(--text-muted);
            border-top: 1px solid transparent;
        }
        
        .toggle-input:checked ~ .toggle-content {
            max-height: 1000px;
            padding-bottom: 16px;
            border-top: 1px solid var(--border-color);
            padding-top: 16px;
        }
        .toggle-input { display: none; }
        

        .notion-form-container {
            margin-top: 48px;
            background: #fff;
            padding: 32px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
        }
        

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hamburger-menu { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 0;
                width: 100%;
                background-color: #fff;
                border-bottom: 1px solid var(--border-color);
                padding: 20px 0;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            }
            .nav-links.active { display: flex; }
            .nav-link { padding: 12px; width: 100%; text-align: center; }
            
            .notion-header { padding-top: 110px; }
            .notion-title { font-size: 38px; }
            .notion-process-list { grid-template-columns: 1fr; }
            .notion-gallery-container { grid-template-columns: 1fr; }
            .notion-gallery-card.popular { transform: none; }
        }
   

.advisory-gateway {
    background: linear-gradient(135deg, #111827 0%, #0f172a 100%); 
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px auto 60px auto;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.advisory-gateway::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.gateway-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(5px);
}

.gateway-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.gateway-text {
    font-size: 16px;
    color: #9ca3af;
    max-width: 600px;
    margin-bottom: 32px;
}

.gateway-btn {
    background: #fff;
    color: #111827;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.gateway-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

@media (min-width: 768px) {
    .advisory-gateway {
        padding: 60px;
    }
    .gateway-title {
        font-size: 42px;
    }
}
    
    
.brand-connector {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-line {
    height: 1px;
    width: 30px;
    background: rgba(255, 255, 255, 0.3);
}
.tally-embed { position: relative; width: 100%; }
.tally-embed iframe { display: block; width: 100%; border: 0; }


.tally-branding-mask{
  position: absolute;
  right: 0;
  bottom: 0;


  width: clamp(220px, 35vw, 360px);
  height: 70px;             

  background: #fff;          
  pointer-events: auto;
}

@media (max-width: 767px) {
  .tally-branding-mask{
    width: clamp(180px, 55vw, 320px);
    height: 70px;
  }
}



