.elementor-372 .elementor-element.elementor-element-b7f8b58{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* --- PASTE THIS CLEANED-UP CSS CODE --- */

/* --- Global Styles & Resets --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text-primary);
    font-family: var(--font-main);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Motion Graphics Canvas --- */
#interactive-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

/* --- Reusable Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header / Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
}
.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s var(--smooth-ease);
}
.main-nav a:hover {
    color: var(--text-primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 100px; /* Offset for header */
}
.hero-content {
    animation: fadeIn 1.5s var(--smooth-ease) forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow), var(--tertiary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-flow 10s linear infinite;
}
@keyframes gradient-flow {
    to { background-position: 200% center; }
}
.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 650px;
    margin: 30px auto 40px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.cta-button {
    background: var(--primary-glow);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s var(--smooth-ease), box-shadow 0.3s var(--smooth-ease);
    box-shadow: 0 10px 30px rgba(230, 0, 122, 0.4);
}
.cta-button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 0, 122, 0.6);
}

/* --- Section Styling --- */
.section {
    padding: 120px 0;
    position: relative;
}
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px;
}
.section-header h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Tools Section --- */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.tool-card {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--smooth-ease), border-color 0.4s var(--smooth-ease);
}
/* The Funky Spotlight Effect */
.tool-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -100px);
    left: var(--mouse-x, -100px);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.2), transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.4s var(--smooth-ease);
    opacity: 0;
    pointer-events: none;
}
.tool-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 191, 255, 0.5);
}
.tool-card:hover::before {
    opacity: 1;
}
.tool-icon {
    margin-bottom: 25px;
}
.tool-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--secondary-glow);
}
.tool-card h3 {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
}
.tool-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* --- Philosophy Section --- */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}
.philosophy-item {
    background: rgba(26, 26, 26, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}
.philosophy-item svg {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--tertiary-glow);
}

/* --- Testimonials Section --- */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-color);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-secondary);
}
.testimonial-author {
    font-weight: 700;
    font-size: 1rem;
}
.author-title {
    color: var(--primary-glow);
    font-size: 0.9rem;
}

/* --- Footer --- */
.main-footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}/* End custom CSS */