/* ================================
   Components - Buttons, Cards, Forms, Badges
   ================================ */

/* Buttons */
.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(46,91,255,0.3);
    animation: breathe 3s ease-in-out infinite;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46,91,255,0.4);
    animation: breathe 3s ease-in-out infinite;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(16,185,129,0.25);
}

.pricing-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(16,185,129,0.35);
    animation: none;
}

.footer-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(16,185,129,0.3);
    animation: breathe 3s ease-in-out infinite;
}

.footer-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16,185,129,0.4);
    animation: breathe 3s ease-in-out infinite;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--dark-text);
    line-height: 1;
}

/* Cards */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    border: 2px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Badges */
.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--dark-text);
    background: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1.5px;
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Logo Components */
.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
    transition: transform 0.3s ease;
}

.trust-logo {
    height: 45px;
    width: auto;
    max-width: 120px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    object-fit: contain;
}

/* Fix for specific logos */
.trust-logo[src*="QuantiveLogo"] {
    filter: grayscale(100%) brightness(0.3) contrast(1.2);
    opacity: 0.8;
}

.trust-logo[src$=".png"] {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.trust-logo:hover {
    opacity: 0.9;
    filter: grayscale(80%);
}

/* ICP Hover Boxes */
.icp-hover-box:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(20,184,166,0.15), 0 2px 6px rgba(0,0,0,0.08) !important;
}

.icp-hover-box:hover .hover-content-consultant,
.icp-hover-box:hover .hover-content-founder {
    max-height: 240px !important;
    opacity: 1 !important;
}

/* Process Step Icons */
.step-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
}

.process-step {
    position: relative;
}

.process-step:hover ul {
    opacity: 1 !important;
}
