/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #2c5aa0;
    --secondary: #018c04;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-blue: #0722ee;
    --gold: #ffd700;
    --silver: #c0c0c0;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.product-logo-link img {
    position: relative;
    top: 7px;   /* increase to 4–5px if you need it a bit lower */
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    font-size: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
}

/* path: public/styles.css  → add near existing .logo rules */

/* keep your existing .logo styles */
.logo-mark{ /* essential: keeps header height tidy */
  width:32px; height:32px; margin-right:10px; display:block;
}
.logo-text{
  display:flex; align-items:center; gap:0; font-weight:800; letter-spacing:.2px;
}
.logo-hire{ color:#0b0b0b; }         /* dark like screenshot */
.logo-x{ color:#f98705; margin-left:2px; } /* orange like screenshot */


.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Auto-Animated Get Started Button */
.nav-cta {
    background-color: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: pulse-nav 2s infinite;
}

@keyframes pulse-nav {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 90, 160, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(44, 90, 160, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 90, 160, 0);
    }
}

.nav-cta:hover {
    background-color: var(--light-blue);
    color: white !important;
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Hero Section */
.hero {
    background: url('img/kom.png') center/cover no-repeat;
    color: white;
    padding: 125px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Auto-Animated Get Started Button in Hero */
.btn-primary {
    background-color: var(--secondary);
    color: white;
    position: relative;
    z-index: 1;
    animation: pulse-hero 2s infinite, shine 3s infinite;
}

@keyframes pulse-hero {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

@keyframes shine {
    0% {
        background-position: -100px;
    }
    40%, 100% {
        background-position: 140px;
    }
}

.btn-primary:hover {
    background-color: #06db03;
    transform: translateY(-3px);
    animation: none;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    background-color: var(--light);
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 35px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray);
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: white;
}

.how-it-works .section-title h2 {
    color: white;
}

.how-it-works .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: white;
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.step h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.4rem;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits Section */
.benefits {
    background-color: var(--light);
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-list {
    flex: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.checkmark {
    width: 30px;
    height: 30px;
    background-color: #2ecc71;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry {
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.industry:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.industry-image {
    height: 200px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.industry:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content {
    padding: 25px 20px;
}

.industry h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.industry p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Fixed Pricing Section - More Compact */
.pricing {
    background: radial-gradient(1000px 600px at 50% -200px, #1f2942 0%, #0b1220 55%, #090f1a 100%);
    padding: 80px 0; /* keep rhythm */
    color: #e5e7eb;
}
.pricing .section-title h2 { color: #fff; }
.pricing .section-title p  { color: rgba(255,255,255,.8); }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 920px;        /* tighter like screenshot */
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    border-radius: 14px;
    padding: 28px 26px;
    background:
        radial-gradient(120% 150% at 0% 0%, rgba(255,255,255,.06), rgba(255,255,255,.02) 40%, rgba(255,255,255,0) 60%),
        linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
    text-align: left;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    border-color: rgba(255,255,255,.12);
}

.pricing-card h3 {
    margin: 2px 0 10px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: .4px;
    opacity: .95;
}

/* price row like: $79  /mo   OR   $0.01  trial */
.price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 6px 0 18px;
}
.price .amount {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #cbd5ff; /* soft blue for contrast */
}
.price .label {
    font-size: 14px;
    color: rgba(229,231,235,.8);
}

/* bullets */
.features-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}
.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: .98rem;
    color: rgba(229,231,235,.95);
}
.features-list i {
    color: #22c55e;
    font-size: .95rem;
}

/* Buttons for cards */
.pricing .btn {
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 18px;
}
.btn-ghost {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    color: #e5e7eb;
}
.btn-ghost:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
}

.pricing .btn-primary {
    background: linear-gradient(180deg, #4f46e5 0%, #4338ca 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(79,70,229,.35);
}
.pricing .btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(79,70,229,.45);
}

/* Featured (right card) */
.pricing-card.featured {
    background:
        radial-gradient(120% 150% at 100% 0%, rgba(147,197,253,.15), rgba(147,197,253,0) 60%),
        linear-gradient(180deg, #0d1426 0%, #0a1020 100%);
    border: 1px solid rgba(147,197,253,.25);
    box-shadow: inset 0 0 0 1px rgba(147,197,253,.08), 0 12px 40px rgba(23,37,84,.55);
}

/* "Recommended" pill in the top-right like the screenshot */
.recommended-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(180deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: .3px;
    box-shadow: 0 8px 20px rgba(99,102,241,.35);
}

/* small tweak for super-compact on mobile */
@media (max-width: 576px) {
    .pricing { padding: 60px 0; }
    .price .amount { font-size: 36px; }
}

/* ===== END New PRICING ===== */


/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary), #1e3d72);
    color: white;
    text-align: center;
    padding: 70px 0;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-content {
        flex-direction: column;
    }
    
    .benefits-image {
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .pricing {
        padding: 50px 0;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
/* Add styles for the new "Product of Ateamsoftware" section */
/* Add to your existing CSS */

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.85rem;
    position: relative;
}

.copyright p {
    position: relative;
}

.product-of {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    right: 0;
}

.company-name {
    color: #2c5aa0; /* Your primary blue color */
    font-size: 1rem; /* Adjust size as needed */
    font-weight: 600;
}

}