/* ======================= GLOBAL STYLES & VARIABLES ======================= */
:root {
    --bg-dark: #1A0B2E;
    --bg-medium: #2D1B4E;
    --text-light: #F3E5F5;
    --text-medium: #D1C4E9;
    --accent-primary: #FF6B6B;
    /* Coral */
    --accent-secondary: #F59E0B;
    /* Amber */
    --font-primary: 'Inter', sans-serif;
    --border-color: #4A306D;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

h4 {
    font-size: 1rem;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: white;
}

section {
    padding: 100px 0;
}

.agent-workflow-section {
    padding: 120px 0;
}

.solutions-section {
    padding-bottom: 120px;
}

.testimonial-section {
    padding: 60px 0;
}

.solutions-section {
    padding-bottom: 120px;
}

.testimonial-section {
    padding: 60px 0;
}

/* ======================= BUTTONS ======================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-primary);
}

.btn-tertiary {
    color: var(--accent-primary);
    background: none;
    padding-left: 0;
    padding-right: 0;
}

.btn-tertiary::after {
    content: ' →';
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}


/* ======================= HEADER ======================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 11, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: top 0.3s;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-primary);
}

.logo:hover {
    color: white;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-tagline {
    color: var(--text-medium);
    font-size: 0.75rem;
    margin-top: -2px;
    /* Adjust to bring it closer to the logo */
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    padding: 5px 0;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    /* Explicitly set font size */
}

.nav-menu a.active {
    color: var(--accent-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-toggle-btn,
.nav-close-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* ======================= HERO SECTION (HOMEPAGE) ======================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    /* Ensure it's behind content */
}

.video-background canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    /* Canvas is now above video-overlay */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 11, 46, 0.85);
    z-index: 1;
    /* Below canvas */
    pointer-events: none;
    /* Allow clicks to pass through */
}

.hero-content {
    position: relative;
    z-index: 3;
    /* Ensure content is on top of canvas and overlay */
    max-width: 800px;
    pointer-events: none;
    /* Allow clicks to pass through to canvas */
}

.hero-content h1,
.hero-content p {
    /* Removed pointer-events: none; to check visibility */
}

.hero-cta a {
    pointer-events: auto;
    /* Re-enable pointer events for buttons */
}

.hero-content h1 {
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 30px auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* ======================= PAGE HERO (SOLUTIONS PAGE) ======================= */
.page-hero-section {
    padding: 180px 0 100px 0;
    text-align: center;
    background-color: var(--bg-medium);
}

.page-title {
    font-size: 3.8rem;
    color: white;
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 20px auto 0 auto;
}


/* ======================= GENERIC SECTIONS (SHARED STYLES) ======================= */
.social-proof-section,
.solutions-section,
.how-it-works-section,
.features-section,
.testimonial-section,
.final-cta-section {
    border-bottom: 1px solid var(--border-color);
}

.main-footer {
    border-top: 1px solid var(--border-color);
}

.social-proof-section {
    background-color: var(--bg-medium);
    border: none;
    padding: 50px 0;
}

.how-it-works-section,
.testimonial-section {
    background-color: var(--bg-medium);
}


/* (Existing styles from previous version below...) */
.social-proof-section .container {
    text-align: center;
}

.social-proof-section p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1rem;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.logos img {
    height: 30px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logos img:hover {
    filter: none;
    opacity: 1;
}

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

.solution-card {
    background-color: var(--bg-medium);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.solution-card i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.solutions-section h2 {
    margin-bottom: 2em;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--accent-secondary);
    top: 0;
    bottom: 0;
    left: 40px;
}

.timeline-item {
    padding: 25px 40px 25px 80px;
    position: relative;
    background: var(--bg-medium);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 100%;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
    box-shadow: 0 5px 20px rgba(100, 255, 218, 0.1);
}

.timeline-content {
    margin-left: 0;
    padding-left: 0;
}

.timeline-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 1;
    color: var(--bg-dark);
}

.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 2em;
}

.features-section h2 {
    margin-bottom: 2em;
}

.features-display {
    margin-top: 0;
}

.features-content {
    display: flex;
    gap: 50px;
}

.features-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-medium);
    font-size: 1.1rem;
    padding: 15px 20px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border-left: 2px solid var(--text-medium);
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--accent-primary);
    background-color: var(--bg-medium);
    border-left-color: var(--accent-primary);
}

.feature-pane {
    display: none;
}

.feature-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.feature-pane img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

blockquote {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    color: white;
}

blockquote::before {
    content: '“';
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 6rem;
    color: var(--accent-primary);
    opacity: 0.2;
    font-family: serif;
}

.attribution {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.attribution img {
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
}

.author strong {
    color: var(--text-light);
}

.author span {
    color: var(--text-medium);
    display: block;
}

.testimonial-section {
    text-align: center;
}

.final-cta-section {
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.8rem;
}

.final-cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 40px;
}


/* ======================= NEW STYLES FOR SOLUTIONS PAGE ======================= */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.capability-card {
    background-color: var(--bg-medium);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
}

.capability-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px auto;
    background-color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.capability-card .card-icon i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.industry-solutions-section {
    background-color: var(--bg-medium);
}

.industry-tabs-wrapper {
    background-color: var(--bg-dark);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 15px;
}

.industry-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.industry-tab-btn {
    background: none;
    border: none;
    color: var(--text-medium);
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.industry-tab-btn:hover {
    color: var(--text-light);
}

.industry-tab-btn.active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

.industry-tab-btn i {
    margin-right: 8px;
}

.industry-content {
    padding: 10px;
}

.industry-pane {
    display: none;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.industry-pane.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

.industry-pane ul {
    list-style: none;
    margin-top: 20px;
}

.industry-pane li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-medium);
}

.industry-pane li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.industry-pane .pane-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


/* ======================= FOOTER ======================= */
.main-footer {
    background-color: var(--bg-medium);
    padding-top: 60px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo {
    margin-bottom: 15px;
    display: inline-block;
}

.footer-col .slogan {
    color: var(--text-medium);
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-medium);
}

.footer-col a:hover {
    color: var(--accent-primary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-medium);
}

.footer-bottom ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* ======================= RESPONSIVENESS ======================= */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.8rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background-color: rgba(26, 11, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-menu a {
        font-size: 1.3rem;
        padding: 15px 30px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(100, 255, 218, 0.1);
        color: var(--accent-primary);
    }

    .nav-close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--text-light);
    }

    .nav-toggle-btn {
        display: block;
        font-size: 1.5rem;
        color: var(--text-light);
    }

    .nav-buttons {
        display: none;
    }

    .logo-tagline {
        display: none;
    }

    .features-content {
        flex-direction: column;
    }

    .industry-pane {
        grid-template-columns: 1fr;
    }

    .industry-pane .pane-image {
        grid-row: 1;
        margin-bottom: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        align-items: center;
    }

    .social-proof-section .logos img {
        width: 100%;
        height: auto !important;
        filter: none;
        opacity: 1;
    }

    .agent-workflow-section {
        padding: 80px 0;
    }

    .workflow-diagram {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .industry-tabs {
        justify-content: center;
    }

    .industry-tab-btn {
        padding: 15px;
    }
}

/* ======================= AI AGENT WORKFLOW STYLES ======================= */
.agent-workflow-section {
    background-color: var(--bg-medium);
    padding: 100px 0;
}

.workflow-diagram {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.agent-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(100, 255, 218, 0.1);
    border-color: var(--accent-primary);
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.agent-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

/* Utility Classes */
.text-highlight {
    color: var(--accent-primary);
}

.text-white {
    color: #ffffff;
}

.agent-title h4 {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.agent-title h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 0;
}

.agent-body p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.agent-body ul {
    list-style: none;
    padding: 0;
}

.agent-body li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.agent-body li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.workflow-arrow {
    text-align: center;
    margin: 20px 0;
    color: var(--accent-primary);
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ======================= ENHANCED BUTTON STYLES ======================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-dark);
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
    color: var(--bg-dark);
}

.btn-tertiary {
    background: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-tertiary:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ======================= ENHANCED NAVIGATION ======================= */
.main-header {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ======================= ENHANCED HERO SECTION ======================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-light), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 600px;
}

/* ======================= ENHANCED CARDS ======================= */
.solution-card,
.capability-card {
    background: linear-gradient(145deg, var(--bg-medium), var(--bg-dark));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before,
.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before,
.capability-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover,
.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.1);
    border-color: var(--accent-primary);
}

/* ======================= ENHANCED TIMELINE ======================= */

/* ======================= ENHANCED TESTIMONIAL ======================= */
.testimonial-section {
    background: linear-gradient(135deg, var(--bg-medium) 0%, var(--bg-dark) 100%);
}

blockquote {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    color: var(--text-light);
    padding: 40px;
    background: var(--bg-dark);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

/* ======================= RESPONSIVE ENHANCEMENTS ======================= */
@media (max-width: 768px) {
    .agent-card {
        padding: 20px;
    }

    .agent-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .agent-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .workflow-diagram {
        padding: 0 20px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .agent-card {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    blockquote {
        font-size: 1.4rem;
        padding: 20px;
    }

    .agent-title h3 {
        font-size: 1.2rem;
    }
}

/ *   U t i l i t y   C l a s s e s   * /     . t e x t - h i g h l i g h t    {
                 c o l o r :    v a r ( - - a c c e n t - p r i m a r y ) ;
         
}

     