 .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); } .reveal.active { opacity: 1; transform: translateY(0); } .delay-100 { transition-delay: 0.1s; } .delay-200 { transition-delay: 0.2s; } .delay-300 { transition-delay: 0.3s; } .commercial-hero { position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: var(--spacing-4xl) 0; background: var(--bg-primary); border-bottom: 1px solid var(--gray-800); } .hero-background { position: absolute; inset: 0; z-index: 0; } .hero-bg-image { width: 100%; height: 100%; background-image: url('../images/commercial-resources-hero.png'); background-size: cover; background-position: center; filter: brightness(0.4) contrast(1.1); transform: scale(1.05); } .hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 90%); z-index: 1; } .commercial-hero .container { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; } .breadcrumb-section { position: relative; z-index: 20; margin-bottom: 2.5rem; margin-top: 2.5rem; text-align: left; display: flex; justify-content: flex-start; } .breadcrumb-nav { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.6rem 1.25rem; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 100px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); } .breadcrumb-nav a { color: #e0e0e0; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.3s ease; } .breadcrumb-nav a:hover { color: var(--primary-color); } .breadcrumb-nav span { color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; } .commercial-hero-wrapper { max-width: 900px; margin: 0 auto; } .hero-summary { display: inline-block; margin-bottom: 1.5rem; } .summary-badge { display: inline-block; padding: 0.5rem 1.5rem; background: rgba(240, 185, 11, 0.1); border: 1px solid rgba(240, 185, 11, 0.3); border-radius: 50px; color: var(--primary-color); font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; backdrop-filter: blur(5px); } .commercial-hero-title { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; font-weight: 800; margin-bottom: var(--spacing-lg); background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); } .commercial-hero-description { font-size: clamp(1.1rem, 2vw, 1.25rem); line-height: 1.7; color: var(--text-secondary); margin-bottom: var(--spacing-2xl); max-width: 800px; margin-left: auto; margin-right: auto; } .hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); } .hero-stat { text-align: center; } .stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 0.5rem; line-height: 1; } .stat-label { color: #9ca3af; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; } @media (max-width: 768px) { .hero-stats { flex-direction: column; gap: 2rem; } } .resources-section { padding: var(--spacing-4xl) 0; background: var(--bg-primary); position: relative; overflow: hidden; } .calculators-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: var(--spacing-xl); margin-top: var(--spacing-3xl); } @media (min-width: 768px) { .calculators-grid { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1024px) { .calculators-grid.bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: min-content; } .calculators-grid.bento-grid { max-width: 1000px; margin-left: auto; margin-right: auto; } .bento-large { grid-column: span 1; } } .glass-card { --glass-bg: rgba(20, 24, 28, 0.6); --glass-border: rgba(255, 255, 255, 0.08); --glass-backdrop: blur(12px); background: var(--glass-bg); backdrop-filter: var(--glass-backdrop); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2rem; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; } .glass-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); border-color: rgba(240, 185, 11, 0.3); } .tech-card-header { text-align: center; margin-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 1.5rem; } .tech-icon { font-size: 3rem; margin-bottom: 1rem; display: inline-block; filter: drop-shadow(0 0 10px rgba(240, 185, 11, 0.3)); background: transparent; padding: 0; height: auto; width: auto; } .tech-header-text h3 { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 0.5rem; } .tech-header-text p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; } .glass-input, .glass-select { width: 100%; background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 0.8rem 1rem; color: #fff; font-size: 1rem; transition: all 0.3s ease; margin-bottom: 0.5rem; } .glass-input:focus, .glass-select:focus { outline: none; border-color: var(--primary-color); background: rgba(0, 0, 0, 0.5); box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1); } .glass-select option { background: var(--bg-primary); color: #fff; } .glass-form-group { margin-bottom: 1.5rem; } .glass-form-group label { display: block; color: var(--text-secondary); margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 500; } .btn-primary { width: 100%; background: var(--primary-color); color: #000; font-weight: 700; padding: 1rem; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; } .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(240, 185, 11, 0.3); } .calculator-result-box { margin-top: 2rem; background: rgba(240, 185, 11, 0.1); border: 1px solid rgba(240, 185, 11, 0.2); border-radius: 8px; padding: 1.5rem; text-align: center; } .result-content h4 { color: var(--text-secondary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; } .result-value { color: var(--primary-color); font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; } .result-explanation { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; line-height: 1.5; } .timeline-section { padding: var(--spacing-4xl) 0; background: var(--bg-secondary); } .checklist-timeline { position: relative; max-width: 800px; margin: var(--spacing-3xl) auto 0; } .checklist-timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--primary-color), transparent); } .timeline-item { position: relative; padding-left: 80px; margin-bottom: 3rem; } .timeline-marker { position: absolute; left: 0; top: 0; width: 50px; height: 50px; background: var(--bg-primary); border: 2px solid var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 0 15px rgba(240, 185, 11, 0.2); } .marker-icon { font-size: 1.5rem; } .timeline-content { position: relative; } .timeline-title { color: var(--primary-color); margin-bottom: 1.5rem; font-size: 1.4rem; } .checklist-items { display: grid; gap: 1rem; } .checklist-item { display: flex; align-items: center; gap: 1rem; padding: 0.8rem; background: rgba(255, 255, 255, 0.03); border-radius: 6px; transition: background 0.3s ease; } .checklist-item:hover { background: rgba(255, 255, 255, 0.08); } .checklist-icon { color: var(--primary-color); font-weight: bold; } .checklist-text { color: #e0e0e0; } @media (max-width: 768px) { .checklist-timeline::before { left: 20px; } .timeline-item { padding-left: 60px; } .timeline-marker { width: 40px; height: 40px; } .marker-icon { font-size: 1.2rem; } } .vocabulary-section { padding: var(--spacing-4xl) 0; background: var(--bg-primary); } .vocabulary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: var(--spacing-3xl); } .vocab-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 8px; padding: 1.5rem; display: flex; flex-direction: column; height: 100%; transition: 0.3s; } .vocab-card:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--primary-color); transform: translateY(-5px); } .vocab-card h3 { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .vocab-card p { color: #ccc; font-size: 0.95rem; line-height: 1.6; margin: 0; } .hero-quote { padding: var(--spacing-3xl) 0; background-color: var(--primary-color); color: var(--primary-text); } .hero-quote-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-2xl); align-items: center; } .hero-quote-text { padding-right: var(--spacing-lg); } .hero-quote-title { font-size: 2.5rem; font-weight: 700; margin-bottom: var(--spacing-md); color: #000000; } .hero-quote-description { font-size: 1.125rem; margin-bottom: var(--spacing-xl); color: #1a1a1a; } .hero-quote .btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; border-radius: var(--border-radius-md); font-weight: 600; text-decoration: none; transition: all 0.3s ease; min-height: 48px; background-color: #000000; color: #ffffff; border: 2px solid #000000; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .hero-quote .btn:hover { background-color: #1a1a1a; border-color: #1a1a1a; transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); } @media (max-width: 768px) { .hero-quote-content { grid-template-columns: 1fr; gap: var(--spacing-xl); } .hero-quote-text { text-align: center; padding-right: 0; } } .commercial-cta { padding: var(--spacing-3xl) 0; position: relative; border-top: 1px solid var(--gray-800); overflow: hidden; background: radial-gradient(circle at top right, rgba(240, 185, 11, 0.1), transparent 40%), radial-gradient(circle at bottom left, rgba(240, 185, 11, 0.05), transparent 40%), var(--bg-primary); } .commercial-cta-wrapper { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2; } .commercial-cta-title { font-size: clamp(2rem, 4vw, 3rem); background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: var(--spacing-lg); font-weight: 700; } .commercial-cta-description { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: var(--spacing-2xl); line-height: 1.6; } .commercial-cta-form-wrapper { padding: var(--spacing-xl); margin-bottom: var(--spacing-xl); text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease; } .commercial-cta-form-wrapper:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); border-color: var(--primary-color); } .commercial-cta-actions { display: flex; justify-content: center; gap: var(--spacing-xl); flex-wrap: wrap; margin-top: var(--spacing-xl); } .commercial-cta-link { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 0.75rem; font-weight: 600; font-size: 1.1rem; padding: 0.75rem 1.5rem; background: rgba(255, 255, 255, 0.03); border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; backdrop-filter: blur(5px); } .commercial-cta-link:hover { background: rgba(240, 185, 11, 0.15); border-color: var(--primary-color); transform: translateY(-2px); box-shadow: 0 0 20px rgba(240, 185, 11, 0.2); } .commercial-cta-form-wrapper .quote-form-standard { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } .commercial-cta-form-wrapper .standard-form-group { width: 100%; } .commercial-cta-form-wrapper .standard-form-group:nth-of-type(5), .commercial-cta-form-wrapper .standard-form-group:nth-of-type(6), .commercial-cta-form-wrapper .standard-form-group:nth-of-type(7) { grid-column: span 2; } .commercial-cta-form-wrapper .standard-btn { grid-column: span 2; } @media (max-width: 768px) { .commercial-cta-actions { flex-direction: column; gap: var(--spacing-md); } .commercial-cta-link { justify-content: center; width: 100%; } .commercial-cta-wrapper { padding: 0 var(--spacing-sm); } .commercial-cta-form-wrapper { padding: var(--spacing-lg) var(--spacing-md); margin-bottom: var(--spacing-lg); } .commercial-cta-form-wrapper .quote-form-standard { grid-template-columns: 1fr; } .commercial-cta-form-wrapper .standard-form-group:nth-of-type(5), .commercial-cta-form-wrapper .standard-form-group:nth-of-type(6), .commercial-cta-form-wrapper .standard-form-group:nth-of-type(7), .commercial-cta-form-wrapper .standard-btn { grid-column: span 1; } .commercial-cta-title { font-size: 1.75rem; } }