/* Tech Partnership Page Styles */

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #8b5cf6;
    --accent-dark: #7c3aed;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(0, 0, 0, 0.1);
    
    /* Partnership Specific Colors */
    --red-bg: #fff1f2;
    --red-text: #e11d48;
    --blue-bg: #eff6ff;
    --blue-text: #3b82f6;
    --purple-bg: #f5f3ff;
    --purple-text: #8b5cf6;
    --green-bg: #ecfdf5;
    --green-text: #10b981;
    --dark-bg: #0f172a;
    
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-main); 
    background-color: var(--bg-white); 
    line-height: 1.6; 
    overflow-x: hidden; 
    width: 100%;
    margin: 0;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; word-wrap: break-word; overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }

.btn-primary { 
    background: var(--primary); 
    color: white; 
    padding: 12px 28px; 
    border-radius: 10px; 
    font-weight: 600; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3); 
    border: none; 
    cursor: pointer; 
    transition: var(--transition); 
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4); }

.btn-secondary { 
    background: white; 
    color: var(--text-main); 
    padding: 12px 28px; 
    border-radius: 10px; 
    font-weight: 600; 
    border: 1px solid var(--border-color); 
    cursor: pointer; 
    transition: var(--transition); 
}
.btn-secondary:hover { background: var(--bg-light); transform: translateY(-2px); }

/* Header */
.main-header { 
    height: var(--header-height); 
    display: flex; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    background: var(--glass-bg); 
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid var(--border-color); 
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 700; font-family: 'Outfit', sans-serif; }
.logo-icon { 
    width: 32px; 
    height: 32px; 
    background: var(--primary); 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 8px; 
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 24px; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Common Section Layout */
section { padding: 60px 0; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-header h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.1; }
.section-header p { font-size: 1.15rem; color: var(--text-muted); }

/* Hero Section */
.hero-partnership {
    padding: 80px 0 100px;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.05), transparent 40%);
    background-color: var(--bg-light);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-partnership h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-partnership h1 .gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-partnership p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Challenge Section */
.challenge {
    background: white;
}

.challenge-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.challenge-content {
    flex: 1;
}

.challenge-content .tag {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: block;
}

.challenge-content h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.challenge-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.challenge-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.challenge-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #fffafa; /* Light pink/red tint */
    border-left: 4px solid #ef4444;
    border-radius: 4px 12px 12px 4px;
}

.challenge-card .icon {
    color: #ef4444;
    flex-shrink: 0;
}

.challenge-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.challenge-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer Styles */
.main-footer {
    background: #0B1120;
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

.footer-links ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

/* Solution Section */
.solution {
    background: var(--bg-light);
    text-align: center;
}

.solution-header {
    margin-bottom: 60px;
}

.solution-header .tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.solution-header h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.solution-card-container {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
}

.solution-card .icon-box {
    width: 64px;
    height: 64px;
    background: var(--blue-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.solution-card:nth-child(2) .icon-box { background: var(--blue-bg); color: var(--primary); }
.solution-card:nth-child(3) .icon-box { background: var(--blue-bg); color: var(--primary); }

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section (Everything Your Business Needs) */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

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

.service-card .icon-box {
    width: 48px;
    height: 48px;
    background: var(--blue-bg);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-features li svg {
    color: var(--primary);
}

/* Process Section (How Partnership Works) */
.process {
    background: var(--bg-light);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.process-step-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step-item:last-child {
    margin-bottom: 0;
}

.process-step-content {
    width: 45%;
}

.process-step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px var(--bg-light);
}

.process-step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step-item:nth-child(even) .process-step-content {
    text-align: left;
}

.process-step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.process-step-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.process-step-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.process-step-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.process-step-card ul li svg {
    color: var(--primary);
}

/* For Whom Section (Who This Partnership Is For) */
.for-whom {
    background: white;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.for-whom-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
}

.for-whom-card:hover {
    transform: translateY(-5px);
}

.for-whom-card.blue { border-top: 4px solid var(--primary); background: linear-gradient(to bottom, #f0f7ff, white); }
.for-whom-card.purple { border-top: 4px solid var(--accent); background: linear-gradient(to bottom, #f5f3ff, white); }
.for-whom-card.green { border-top: 4px solid var(--green-text); background: linear-gradient(to bottom, #f0fdf4, white); }

.for-whom-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    background: white;
}

.for-whom-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.for-whom-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.for-whom-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.for-whom-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.for-whom-features li svg {
    color: var(--primary);
}

.for-whom-card.purple .for-whom-features li svg { color: var(--accent); }
.for-whom-card.green .for-whom-features li svg { color: var(--green-text); }

/* Strategic Advantages Section */
.advantages {
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.advantage-card .icon-box {
    width: 56px;
    height: 56px;
    background: var(--blue-bg);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Partnership Statement Section */
.partnership-statement {
    background: white;
}

.statement-card {
    background: #0f172a;
    color: white;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.statement-card h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.statement-card p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 32px;
    border-radius: 100px;
}

.commitment-box .icon {
    font-size: 1.5rem;
}

.commitment-box .text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.commitment-box .text p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Form Section */
.partnership-form-section {
    background: var(--bg-light);
}

.form-container {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group.full-width {
    grid-column: span 2;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-checkbox input {
    margin-top: 3px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Prefer to Talk First Section */
.talk-first {
    background: #0f172A;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.talk-first h2 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.talk-first p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: var(--text-main);
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-partnership h1 { font-size: 4rem; }
    .footer-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-partnership h1 { font-size: 2.2rem !important; line-height: 1.2; }
    .hero-partnership p { font-size: 1.1rem; }
    .hero-partnership { padding: 80px 0 60px; }
    .challenge-flex { flex-direction: column; gap: 40px; }
    .challenge-content h2 { font-size: 2.5rem; }
    .solution-card-container, .services-grid, .for-whom-grid { grid-template-columns: 1fr; }
    .advantages-grid, .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .process-steps::before { left: 24px; }
    .process-step-number { left: 24px; transform: none; }
    .process-step-item, .process-step-item:nth-child(even) { flex-direction: row; }
    .process-step-content { width: 100%; padding-left: 60px; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2.2rem; }
    .statement-card h2 { font-size: 2.2rem; }
    .talk-first h2 { font-size: 2.2rem; }
    section { overflow: hidden; }
}




