/* 123secretariat - Styles CSS */

.gradient-text {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-bg {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-animation {
    animation: float 6s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}
.pulse-dot {
    animation: pulse-dot 2s infinite;
}
@keyframes grow-bar {
    from { width: 0%; }
}
.animate-bar {
    animation: grow-bar 1.5s ease-out forwards;
}
@keyframes count-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.count-animation {
    animation: count-up 0.5s ease-out forwards;
}
.channel-icon {
    transition: all 0.3s ease;
}
.channel-icon:hover {
    transform: translateY(-5px) scale(1.1);
}
/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c7d2fe; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #6366f1; }
/* Fix select dropdown options */
#professionSelect option,
#professionSelect optgroup,
#packSelect option {
    background-color: #1f2937;
    color: white;
    padding: 10px;
}
#professionSelect optgroup {
    font-weight: bold;
    color: #9ca3af;
}
/* Pack slider styles */
.pack-slider {
    background: linear-gradient(90deg, #22c55e 0%, #eab308 50%, #f97316 100%);
}
.pack-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    cursor: grab;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 0 rgba(99, 102, 241, 0);
    border: 3px solid #6366f1;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.pack-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 0 8px rgba(99, 102, 241, 0.15);
}
.pack-slider:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4), 0 0 0 12px rgba(99, 102, 241, 0.2);
}
.pack-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    cursor: grab;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 3px solid #6366f1;
    transition: transform 0.2s, box-shadow 0.3s;
}
.pack-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
}
.pack-label {
    color: #9ca3af;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
}
.pack-label:hover {
    color: #d1d5db;
    transform: scale(1.05);
}
.pack-label.active {
    color: white;
    background: rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}
@keyframes pack-pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}
.pack-label.pulse {
    animation: pack-pulse 0.6s ease-out;
}
/* Result cards fade animation */
.result-card.fade-out {
    animation: result-fade-out 0.2s ease both;
}
.result-card.fade-in {
    animation: result-fade-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes result-fade-out {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0.3; transform: scale(0.97); }
}
@keyframes result-fade-in {
    from { opacity: 0.3; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}
/* Serenity gauge animations */
@keyframes serenity-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
/* Pricing card shimmer effect */
.pricing-card-shimmer {
    position: relative;
}
.pricing-card-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    border-radius: 1rem;
}
/* Step cards ola animation */
.step-card {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.step-card.visible {
    opacity: 1;
}
.step-card.visible:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.step-card.visible:hover .step-number {
    animation: step-number-aura 0.4s ease-out;
}
.step-number {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@keyframes step-number-aura {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(99, 102, 241, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}
@keyframes ola-lift {
    0% { transform: translateY(0); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
    50% { transform: translateY(-12px); box-shadow: 0 20px 30px rgba(0,0,0,0.15); }
    100% { transform: translateY(0); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
}
@keyframes ola-number-aura {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6); }
    50% { transform: scale(1.15); box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}
.step-card.ola-animate {
    animation: ola-lift 0.6s ease-in-out;
    transition: none;
}
.step-card.ola-animate .step-number {
    animation: ola-number-aura 0.6s ease-in-out;
}

/* Rule cards animation */
.rule-card {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.rule-card.visible {
    opacity: 1;
    transform: translateX(0);
}
.rule-card[data-color="red"]:hover {
    border-color: #ef4444;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
}
.rule-card[data-color="orange"]:hover {
    border-color: #f97316;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}
.rule-card[data-color="green"]:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

/* Channel badges animation */
.channel-badge {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}
.channel-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: #e5e7eb;
}
@keyframes channel-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(99, 102, 241, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}
.channel-badge.pulse {
    animation: channel-pulse 0.6s ease-out;
}

/* Channel swap animation in rule cards */
.channel-swap-container {
    position: relative;
    min-height: 22px;
}
.channel-tag {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.channel-tag.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}
.channel-tag.fade-in {
    opacity: 0;
    transform: translateY(10px);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(236, 72, 153, 0.3), 0 0 10px rgba(168, 85, 247, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.5), 0 0 40px rgba(168, 85, 247, 0.3), 0 0 60px rgba(99, 102, 241, 0.2);
    }
}
.serenity-container {
    position: relative;
    overflow: hidden;
}
.serenity-container.animate-complete {
    animation: glow-pulse 2s ease-in-out;
}
.serenity-container .shimmer-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    pointer-events: none;
}
.serenity-container.animate-complete .shimmer-effect {
    animation: shimmer 1s ease-in-out 0.8s;
}
#sereniteBar {
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
#sereniteBar.animating {
    animation: serenity-fill 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
#sereniteValue {
    transition: all 0.3s ease;
}
#sereniteValue.pop {
    transform: scale(1.2);
    color: #f472b6;
}
/* Growth button animation */
.growth-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #cbd5e1;
    transition: all 0.3s ease;
}
.growth-btn:hover {
    border-color: #1e293b;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
.growth-btn svg.growth-chart {
    position: absolute;
    bottom: 4px;
    right: 12px;
    width: 70px;
    height: calc(100% - 8px);
    opacity: 0.25;
    pointer-events: none;
}
.growth-btn:hover svg.growth-chart {
    opacity: 0.4;
}
.growth-btn .bar {
    fill: url(#barGradient);
    transform-origin: bottom;
    animation: grow-bar-anim 2s ease-in-out infinite;
}
.growth-btn:hover .bar {
    animation-duration: 1s;
}
.growth-btn .bar:nth-child(2) { animation-delay: 0.12s; }
.growth-btn .bar:nth-child(3) { animation-delay: 0.24s; }
.growth-btn .bar:nth-child(4) { animation-delay: 0.36s; }
.growth-btn .bar:nth-child(5) { animation-delay: 0.48s; }
@keyframes grow-bar-anim {
    0%, 100% {
        transform: scaleY(0.2);
        opacity: 0.3;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}
.growth-btn span {
    position: relative;
    z-index: 1;
}
.growth-btn svg.growth-icon {
    position: relative;
    z-index: 1;
}
/* Hero floating badges */
.hero-badge {
    opacity: 0;
    transform: scale(0) rotate(-5deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.hero-badge.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    pointer-events: auto;
}
.hero-badge.visible::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    animation: badge-pulse 2s ease-out 0.3s;
}
.hero-badge.hiding {
    opacity: 0;
    transform: scale(0.3) rotate(5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 1, 1);
}
@keyframes badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
}
.hero-badge .badge-inner {
    animation: badge-breathe 3s ease-in-out infinite;
}
@keyframes badge-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
/* Missed calls animation styles */
.missed-calls-container {
    transition: background 0.8s ease-in-out;
}
.missed-calls-off {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #f9fafb 100%);
}
.missed-calls-on {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #ecfdf5 100%);
}
.phone-off {
    animation: phone-vibrate 0.3s ease-in-out infinite;
}
.phone-off #phoneStatus {
    animation: blink 1s ease-in-out infinite;
}
.phone-on {
    animation: phone-breathe 3s ease-in-out infinite;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #10b981;
}
.phone-on #phoneIcon {
    color: #059669;
}
/* Ring waves effect */
.ring-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.ring-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}
.phone-off ~ .ring-waves .ring-wave {
    animation: ring-expand 2s ease-out infinite;
}
.ring-wave:nth-child(1) { animation-delay: 0s; }
.ring-wave:nth-child(2) { animation-delay: 0.5s; }
.ring-wave:nth-child(3) { animation-delay: 1s; }
@keyframes ring-expand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}
/* Green ring waves for ON state */
.phone-on ~ .ring-waves .ring-wave {
    border-color: rgba(16, 185, 129, 0.3);
    animation: ring-expand-soft 3s ease-out infinite;
}
@keyframes ring-expand-soft {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}
@keyframes phone-vibrate {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    20% { transform: translate(-50%, -50%) translate(-2px, 0) rotate(-2deg); }
    40% { transform: translate(-50%, -50%) translate(2px, 0) rotate(2deg); }
    60% { transform: translate(-50%, -50%) translate(-2px, 0) rotate(-1deg); }
    80% { transform: translate(-50%, -50%) translate(2px, 0) rotate(1deg); }
}
@keyframes phone-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.03); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.client-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}
.client-icon svg {
    width: 24px;
    height: 24px;
}
.client-green {
    background: #d1fae5;
    color: #059669;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}
.client-orange {
    background: #fef3c7;
    color: #d97706;
    animation: pulse-warning 1s ease-in-out infinite;
}
.client-red {
    background: #fee2e2;
    color: #dc2626;
    animation: pulse-danger 0.5s ease-in-out infinite;
}
.client-lost {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
}
.client-pop {
    animation: client-pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes pulse-warning {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(217, 119, 6, 0); }
}
@keyframes pulse-danger {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
}
@keyframes client-pop-in {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
#serviceToggle[aria-pressed="true"] {
    background-color: #4f46e5;
}
#serviceToggle[aria-pressed="true"] span {
    transform: translateX(24px);
}
.animation-zone-on {
    animation: zone-breathe 4s ease-in-out infinite;
}
@keyframes zone-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
/* Timeline styles */
.timeline-section {
    position: relative;
    overflow: hidden;
}
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
/* Central vertical line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #e5e7eb;
    transform: translateX(-50%);
    border-radius: 2px;
}
.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #6366f1 0%, #06b6d4 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Glow effect on progress line */
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.5),
                0 0 20px rgba(6, 182, 212, 0.3),
                0 0 40px rgba(99, 102, 241, 0.2);
}
/* Timeline items */
.timeline-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 50%;
    padding: 0 50px 60px 0;
}
.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
    padding: 0 0 60px 50px;
}
/* Timeline point/icon - appears first when line reaches it */
.timeline-point {
    position: absolute;
    right: -26px;
    top: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}
.timeline-item.visible .timeline-point {
    transform: scale(1);
}
.timeline-item:nth-child(even) .timeline-point {
    right: auto;
    left: -26px;
}
.timeline-point svg {
    width: 24px;
    height: 24px;
}
/* Timeline content - appears after icon with delay */
.timeline-content {
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    max-width: 340px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease 0.15s,
                transform 0.5s ease 0.15s,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}
.timeline-item:nth-child(even) .timeline-content {
    transform: translateX(20px);
}
.timeline-item.visible .timeline-content {
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
    border-color: #e0e7ff;
    /* Override transition for hover to work without delay */
    transition: opacity 0.5s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}
.timeline-item.visible .timeline-content:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.timeline-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 8px;
}
.timeline-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}
@keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
/* Wave effect when line touches icon */
.timeline-point.touched {
    animation: icon-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes icon-pop {
    0% {
        transform: scale(0);
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    }
    60% {
        transform: scale(1.1);
        box-shadow: 0 4px 25px rgba(99, 102, 241, 0.5),
                    0 0 0 8px rgba(99, 102, 241, 0.2);
    }
    100% {
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3),
                    0 0 0 16px rgba(99, 102, 241, 0);
        transform: scale(1);
    }
}
/* Mobile responsive timeline */
@media (max-width: 768px) {
    .timeline-line,
    .timeline-progress {
        left: 16px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding: 0 0 50px 60px;
        justify-content: flex-start;
    }
    .timeline-point,
    .timeline-item:nth-child(even) .timeline-point {
        left: -6px;
        right: auto;
        width: 44px;
        height: 44px;
    }
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        max-width: 100%;
        transform: translateY(15px);
    }
    .timeline-item.visible .timeline-content {
        transform: translateY(0);
    }
}

/* Menu open states - overlay and panel are independent elements */
body.menu-open #mobileNavOverlay {
    opacity: 1;
    pointer-events: auto;
}
body.menu-open #mobileNavPanel {
    transform: translateX(0);
    pointer-events: auto;
}

/* Prevent page jump AND horizontal scroll when menu opens */
html, body {
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

/* Disable header LINKS when menu open (not the whole header) */
body.menu-open .header-link { pointer-events: none; }

/* ===========================================
   CONTACT PAGE STYLES
   =========================================== */

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll.delay-100 { transition-delay: 0.1s; }
.animate-on-scroll.delay-200 { transition-delay: 0.2s; }
.animate-on-scroll.delay-300 { transition-delay: 0.3s; }

/* Form focus styles */
.form-input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Testimonial card */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Spinner animation */
.animate-spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hidden honeypot field */
.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Reassurance block hover */
.reassurance-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.reassurance-item:hover,
.reassurance-item:active,
.reassurance-item.touch-active {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Icon animation on hover with glow effect */
.reassurance-item .reassurance-icon {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reassurance-item:hover .reassurance-icon,
.reassurance-item:active .reassurance-icon,
.reassurance-item.touch-active .reassurance-icon {
    animation: iconPulseGlow 1s ease-in-out infinite;
}
@keyframes iconPulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 12px rgba(79, 70, 229, 0);
    }
}

/* Contact block hover */
.contact-block {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.contact-block:hover,
.contact-block:active,
.contact-block.touch-active {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Testimonial card touch support */
.testimonial-card:active,
.testimonial-card.touch-active {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Stagger animation for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stagger-children.animate-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-visible > *:nth-child(7) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-visible > *:nth-child(8) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.stagger-children.animate-visible > *:nth-child(n+9) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }

/* Mobile touch states - faster transitions */
@media (hover: none) and (pointer: coarse) {
    .reassurance-item:active,
    .reassurance-item.touch-active,
    .contact-block:active,
    .contact-block.touch-active,
    .testimonial-card:active,
    .testimonial-card.touch-active {
        transition-duration: 0.1s;
    }
}

/* ===========================================
   PRICING PAGE STYLES
   =========================================== */

/* Pricing card hover */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pricing-card:active {
    transform: translateY(-4px);
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.3s ease;
}
.faq-item.open {
    background-color: #f8fafc;
}
.faq-question {
    cursor: pointer;
    transition: color 0.2s, background-color 0.3s ease;
}
.faq-question:hover {
    color: #4f46e5;
}
.faq-item.open .faq-question span {
    color: #4f46e5;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: #4f46e5;
}
.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

/* Interaction cards on mobile - stacked vertically */
.interaction-cards-carousel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0.75rem;
}
@media (min-width: 768px) {
    .interaction-cards-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding-top: 0;
    }
}

/* Hero mirror/shimmer effect for pricing comparison */
.hero-shimmer-source {
    position: relative;
    overflow: hidden;
}
.hero-shimmer-source::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: heroShimmer 4s ease-in-out infinite;
    pointer-events: none;
    border-radius: 0.75rem;
}
.hero-shimmer-target {
    position: relative;
    overflow: hidden;
}
.hero-shimmer-target::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: heroShimmerTarget 4s ease-in-out infinite;
    animation-delay: 0.6s;
    pointer-events: none;
    border-radius: 9999px;
}
@keyframes heroShimmer {
    0%, 100% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    40% { left: 100%; opacity: 1; }
    50%, 100% { left: 100%; opacity: 0; }
}
@keyframes heroShimmerTarget {
    0%, 100% { left: -100%; opacity: 0; }
    0%, 15% { left: -100%; opacity: 0; }
    25% { opacity: 1; }
    55% { left: 100%; opacity: 1; }
    65%, 100% { left: 100%; opacity: 0; }
}

/* Pulse glow effect on savings badge */
.hero-shimmer-target {
    animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 30%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
    50%, 70% { box-shadow: 0 0 20px 5px rgba(34, 197, 94, 0.3); }
}

/* Hover effect on 123secretariat box */
.hero-card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.hero-card-hover:hover,
.hero-card-hover:active,
.hero-card-hover.touch-active {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);
}

/* Pulse icon with glow effect */
.pulse-icon-hover {
    cursor: pointer;
}
.pulse-icon-hover .pulse-icon {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pulse-icon-hover:hover .pulse-icon,
.pulse-icon-hover:active .pulse-icon,
.pulse-icon-hover.touch-active .pulse-icon {
    animation: iconPulseGlow 1s ease-in-out infinite;
}

/* Hover effect on interaction cards */
.interaction-card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.interaction-card-hover:hover,
.interaction-card-hover:active,
.interaction-card-hover.touch-active {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Sequential checkmark animation */
.checkmark-sequence {
    position: relative;
    cursor: pointer;
}
.checkmark-sequence .check-item svg {
    transition: transform 0.2s ease, color 0.2s ease;
}
.checkmark-sequence:hover .check-item:nth-child(1) svg,
.checkmark-sequence:active .check-item:nth-child(1) svg,
.checkmark-sequence.touch-active .check-item:nth-child(1) svg { animation: checkPopGlow 0.5s ease 0s forwards; }
.checkmark-sequence:hover .check-item:nth-child(2) svg,
.checkmark-sequence:active .check-item:nth-child(2) svg,
.checkmark-sequence.touch-active .check-item:nth-child(2) svg { animation: checkPopGlow 0.5s ease 0.12s forwards; }
.checkmark-sequence:hover .check-item:nth-child(3) svg,
.checkmark-sequence:active .check-item:nth-child(3) svg,
.checkmark-sequence.touch-active .check-item:nth-child(3) svg { animation: checkPopGlow 0.5s ease 0.24s forwards; }
.checkmark-sequence:hover .check-item:nth-child(4) svg,
.checkmark-sequence:active .check-item:nth-child(4) svg,
.checkmark-sequence.touch-active .check-item:nth-child(4) svg { animation: checkPopGlow 0.5s ease 0.36s forwards; }
.checkmark-sequence:hover .check-item:nth-child(5) svg,
.checkmark-sequence:active .check-item:nth-child(5) svg,
.checkmark-sequence.touch-active .check-item:nth-child(5) svg { animation: checkPopGlow 0.5s ease 0.48s forwards; }
@keyframes checkPopGlow {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(34, 197, 94, 0)); }
    50% { transform: scale(1.6); filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.6)); }
    100% { transform: scale(1.1); filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.3)); }
}

/* Feature block hover effect */
.feature-block-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.feature-block-hover:hover,
.feature-block-hover:active,
.feature-block-hover.touch-active {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.feature-block-hover .feature-icon {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-block-hover:hover .feature-icon,
.feature-block-hover:active .feature-icon,
.feature-block-hover.touch-active .feature-icon {
    animation: iconPulseGlow 1s ease-in-out infinite;
}

/* Option table row hover */
.option-row-hover {
    transition: background-color 0.15s ease;
}
.option-row-hover:hover,
.option-row-hover:active,
.option-row-hover.touch-active {
    background-color: rgb(249, 250, 251); /* gray-50 */
}

/* Mobile touch states for pricing page */
@media (hover: none) and (pointer: coarse) {
    .hero-card-hover:active,
    .hero-card-hover.touch-active,
    .interaction-card-hover:active,
    .interaction-card-hover.touch-active,
    .feature-block-hover:active,
    .feature-block-hover.touch-active,
    .pulse-icon-hover:active,
    .pulse-icon-hover.touch-active,
    .checkmark-sequence:active,
    .checkmark-sequence.touch-active,
    .option-row-hover:active,
    .option-row-hover.touch-active {
        transition-duration: 0.1s;
    }
}
