:root {
--primary-color: #fd5934;
--primary-hover: #e04622;
--primary-glow: rgba(253, 89, 52, 0.5);
--dark-color: #0b1120;
--light-color: #f8fafc;
--light-alt: #f1f5f9;
--text-color: #334155;
--text-muted: #64748b;
--border-color: #e2e8f0;
--bg-white: #ffffff;
--radius: 12px;
--transition: all 0.3s ease;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', sans-serif;
color: var(--text-color);
line-height: 1.6;
background-color: var(--bg-white);
overflow-x: hidden;
scroll-behavior: smooth;
} .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.bg-dark { background-color: var(--dark-color); }
.bg-light-alt { background-color: var(--light-alt); }
.text-white { color: var(--bg-white); }
.relative { position: relative; }
.border-y {
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
} h1, h2, h3 {
color: var(--dark-color);
line-height: 1.1;
font-weight: 800;
}
.bg-dark h2,
.bg-dark h3 { color: var(--bg-white); }
.mega-title {
font-size: 4rem;
margin-bottom: 24px;
letter-spacing: -1px;
}
h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}
h3 {
font-size: 1.25rem;
margin-bottom: 12px;
}
.text-gradient {
background: linear-gradient(135deg, #fd5934 0%, #ff9a76 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} .badge {
display: inline-block;
padding: 8px 20px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 700;
margin-bottom: 24px;
text-transform: uppercase;
letter-spacing: 1.5px;
}
.badge-glow {
background: var(--bg-white);
color: var(--primary-color);
border: 1px solid var(--primary-color);
box-shadow: 0 0 20px rgba(253, 89, 52, 0.15);
} .btn {
display: inline-block;
padding: 12px 24px;
border-radius: 8px;
font-weight: 700;
text-decoration: none;
transition: var(--transition);
cursor: pointer;
border: 2px solid transparent;
}
.btn-primary {
background-color: var(--primary-color);
color: white;
}
.btn-primary:hover {
background-color: var(--primary-hover);
transform: translateY(-3px);
box-shadow: 0 10px 20px var(--primary-glow);
color: white;
text-decoration: none;
}
.btn-large {
padding: 16px 32px;
font-size: 1.125rem;
}
.shadow-pop { box-shadow: 0 8px 15px rgba(253, 89, 52, 0.3); }
.cta-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
0%   { box-shadow: 0 0 0 0 rgba(253, 89, 52, 0.5); }
70%  { box-shadow: 0 0 0 20px rgba(253, 89, 52, 0); }
100% { box-shadow: 0 0 0 0 rgba(253, 89, 52, 0); }
} .navbar {
background: rgba(255, 255, 255, 0.98);
position: sticky;
top: 0;
z-index: 1000;
padding: 15px 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-img {
height: 42px;
width: auto;
}
.desktop-nav ul {
display: flex;
list-style: none;
gap: 30px;
align-items: center;
}
.desktop-nav a {
text-decoration: none;
color: var(--text-color);
font-weight: 600;
transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--primary-color); }
.api-link {
color: var(--text-muted);
font-size: 0.9rem;
border: 1px solid var(--border-color);
padding: 4px 10px;
border-radius: 6px;
}
.api-link:hover {
border-color: var(--primary-color);
color: var(--primary-color) !important;
} .hero {
padding: 100px 0 120px;
overflow: hidden;
}
.glow-bg {
position: absolute;
top: -20%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, var(--primary-glow) 0%, rgba(255,255,255,0) 70%);
z-index: -1;
filter: blur(50px);
}
.hero-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 30px;
color: var(--text-muted);
}
.hero-image {
perspective: 1200px;
position: relative;
}
.hero-dashboard-mockup {
transform: rotateY(-20deg) rotateX(10deg) scale(1.05);
box-shadow: -25px 35px 50px rgba(0,0,0,0.2);
border-radius: 12px;
transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hero-dashboard-mockup:hover {
transform: rotateY(0deg) rotateX(0deg) scale(1.05);
box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}
.hero-dashboard-mockup img {
width: 100%;
border-radius: 12px;
border: 1px solid var(--border-color);
display: block;
}
.floating-element {
position: absolute;
background: var(--bg-white);
padding: 12px 24px;
border-radius: 50px;
font-weight: 700;
font-size: 1rem;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
border: 1px solid rgba(0,0,0,0.05);
display: flex;
align-items: center;
gap: 8px;
z-index: 2;
animation: float 4s ease-in-out infinite;
white-space: nowrap;
}
.float-1 { top: -15px; right: -25px; color: #10b981; }
.float-2 { bottom: -25px; left: -25px; color: var(--primary-color); animation-delay: 2s; }
@keyframes float {
0%   { transform: translateY(0px); }
50%  { transform: translateY(-12px); }
100% { transform: translateY(0px); }
} .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.grid-2-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .integration-card {
background: var(--bg-white);
padding: 30px 20px;
border-radius: var(--radius);
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
border: 1px solid var(--border-color);
text-align: center;
transition: var(--transition);
}
.integration-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.08);
border-color: var(--primary-color);
}
.integration-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}
.tags-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
margin-top: 15px;
}
.tag-small {
background: var(--light-color);
border: 1px solid var(--border-color);
padding: 6px 12px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
color: var(--text-color);
transition: var(--transition);
}
.tag-small:hover {
background: #ffeae3;
color: var(--primary-color);
border-color: var(--primary-color);
}
.tag-more {
background: transparent;
border: 1px dashed var(--primary-color);
padding: 6px 12px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 700;
color: var(--primary-color);
font-style: italic;
} .stat-number {
font-size: 4rem;
font-weight: 900;
color: var(--primary-color);
line-height: 1;
margin-bottom: 10px;
}
.stat-label {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-muted);
} .automations-section { border-top: 1px solid #334155; }
.bs-list { list-style: none; margin-top: 30px; }
.bs-list li {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 25px;
}
.bs-icon {
font-size: 2rem;
background: rgba(253, 89, 52, 0.1);
padding: 10px;
border-radius: 10px;
line-height: 1;
}
.bs-content strong {
display: block;
font-size: 1.2rem;
margin-bottom: 5px;
color: white;
}
.bs-content span {
font-size: 0.95rem;
color: #9ca3af;
line-height: 1.5;
display: block;
}
.automation-wrapper {
background: #111827;
padding: 30px;
border-radius: 16px;
border: 1px solid #334155;
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.automation-flow {
display: flex;
flex-direction: column;
gap: 10px;
}
.flow-step {
background: #1f2937;
border: 1px solid #374151;
border-radius: 12px;
padding: 16px 20px;
display: flex;
align-items: center;
gap: 15px;
transition: var(--transition);
}
.flow-step:hover {
border-color: var(--primary-color);
transform: translateX(5px);
}
.trigger-step { border-left: 4px solid #10b981; }
.action-step  { border-left: 4px solid var(--primary-color); }
.final-step   { border-left: 4px solid #3b82f6; }
.step-icon {
font-size: 1.8rem;
background: rgba(255,255,255,0.05);
padding: 10px;
border-radius: 8px;
}
.step-content { display: flex; flex-direction: column; }
.step-content strong {
font-size: 0.85rem;
color: #9ca3af;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 4px;
}
.step-content span {
font-size: 1.05rem;
font-weight: 600;
color: white;
}
.flow-arrow {
text-align: center;
color: #4b5563;
font-size: 1.5rem;
font-weight: bold;
} .card-dark {
background: #111827;
border: 1px solid #334155;
padding: 40px 30px;
border-radius: var(--radius);
transition: var(--transition);
}
.card-dark:hover {
transform: translateY(-10px);
border-color: var(--primary-color);
box-shadow: 0 10px 30px var(--primary-glow);
}
.icon-box { font-size: 3rem; margin-bottom: 20px; }
.card-dark p { color: #94a3b8; }
.card {
background: var(--bg-white);
padding: 40px 30px;
border-radius: var(--radius);
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
border: 1px solid var(--border-color);
transition: var(--transition);
}
.border-gradient:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.08);
border-color: var(--primary-color);
} .feature-icon-wrapper {
font-size: 3rem;
background: rgba(253, 89, 52, 0.08);
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px;
margin-bottom: 24px;
border: 1px solid rgba(253, 89, 52, 0.2);
transition: transform 0.3s ease;
}
.card:hover .feature-icon-wrapper {
transform: scale(1.1);
background: rgba(253, 89, 52, 0.15);
}
.feature-card h3 {
font-size: 1.4rem;
margin-bottom: 20px;
}
.feature-card ul {
list-style: none;
margin-top: 16px;
}
.feature-card ul li {
position: relative;
padding-left: 32px;
margin-bottom: 14px;
color: var(--text-muted);
font-size: 1.05rem;
}
.feature-card ul li::before {
content: "✓";
color: var(--bg-white);
background-color: var(--primary-color);
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
position: absolute;
left: 0;
top: 3px;
font-weight: bold;
font-size: 0.8rem;
} .faq-container { max-width: 1000px; margin: 0 auto; }
.faq-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
align-items: start;
}
.faq-column {
display: flex;
flex-direction: column;
gap: 24px;
}
details {
background: var(--bg-white);
border: 1px solid var(--border-color);
border-radius: var(--radius);
padding: 24px;
transition: var(--transition);
box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
details:hover {
border-color: var(--primary-color);
box-shadow: 0 8px 16px rgba(253, 89, 52, 0.05);
}
summary {
font-weight: 700;
font-size: 1.125rem;
color: var(--dark-color);
cursor: pointer;
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
content: "+";
color: var(--primary-color);
font-size: 1.8rem;
font-weight: 300;
line-height: 1;
transition: transform 0.3s ease;
}
details[open] summary::after {
content: "−";
transform: rotate(180deg);
}
details p {
margin-top: 16px;
margin-bottom: 0;
color: var(--text-muted);
border-top: 1px solid var(--border-color);
padding-top: 16px;
line-height: 1.8;
} .final-cta {
background: linear-gradient(135deg, var(--light-color) 0%, #ffeae3 100%);
border-top: 1px solid var(--border-color);
overflow: hidden;
}
.final-cta h2 {
font-size: 3rem;
position: relative;
z-index: 2;
} .footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 40px;
}
.site-footer a {
text-decoration: none;
color: #cbd5e1;
transition: color 0.2s;
}
.site-footer a:hover { color: var(--primary-color); }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; } .section-header {
text-align: center;
margin-bottom: 60px;
}
.section-header p {
font-size: 1.15rem;
color: var(--text-muted);
max-width: 600px;
margin: 0 auto;
} .mobile-menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 1100;
flex-direction: column;
justify-content: center;
gap: 5px;
}
.hamburger-line {
display: block;
width: 26px;
height: 3px;
background: var(--dark-color);
border-radius: 3px;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
} .mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.98);
z-index: 1050;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
opacity: 1;
visibility: visible;
}
.mobile-menu-nav {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100%;
padding: 80px 24px 40px;
}
.mobile-menu-nav ul {
list-style: none;
text-align: center;
margin-bottom: 32px;
}
.mobile-menu-nav ul li {
margin-bottom: 8px;
}
.mobile-menu-nav ul li a {
display: block;
font-size: 1.3rem;
font-weight: 700;
color: var(--dark-color);
text-decoration: none;
padding: 12px 16px;
border-radius: 8px;
transition: background 0.2s ease, color 0.2s ease;
}
.mobile-menu-nav ul li a:hover,
.mobile-menu-nav ul li a:focus {
background: rgba(253, 89, 52, 0.08);
color: var(--primary-color);
}
.mobile-menu-nav .api-link {
font-size: 1rem;
color: var(--text-muted);
border: 1px solid var(--border-color);
padding: 8px 16px;
border-radius: 6px;
}
.mobile-menu-buttons {
display: flex;
flex-direction: column;
gap: 12px;
width: 100%;
max-width: 280px;
}  @media (max-width: 992px) {
.hero-layout,
.footer-grid,
.grid-2-columns {
grid-template-columns: 1fr;
text-align: center;
}
.mega-title { font-size: 3rem; }
h2 { font-size: 2rem; }
.section-padding { padding: 70px 0; }
.hero-dashboard-mockup {
transform: none;
margin-top: 40px;
}
.floating-element { display: none; }
.automation-text { margin-bottom: 40px; }
.bs-list li {
flex-direction: column;
align-items: center;
text-align: center;
}
.faq-list { grid-template-columns: 1fr; }
.footer-grid {
grid-template-columns: 1fr;
text-align: center;
gap: 30px;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
} @media (max-width: 768px) {
.mobile-menu-toggle { display: flex; }
.mobile-menu { display: block; }
.desktop-nav { display: none; }
.nav-buttons { display: none !important; }
.nav-container {
justify-content: space-between;
flex-direction: row;
align-items: center;
}
.mega-title { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
.section-padding { padding: 50px 0; }
.section-header { margin-bottom: 36px; }
.section-header p { font-size: 1rem; }
.stat-number { font-size: 3rem; }
.hero { padding: 50px 0 60px; }
.hero-subtitle { font-size: 1.1rem; }
.step-content span { font-size: 0.9rem; }
.flow-step {
flex-direction: column;
text-align: center;
}
.trigger-step,
.action-step,
.final-step {
border-left: none;
border-top: 4px solid;
}
.trigger-step { border-top-color: #10b981; }
.action-step  { border-top-color: var(--primary-color); }
.final-step   { border-top-color: #3b82f6; }
.automation-wrapper { padding: 20px; }
.card, .card-dark { padding: 28px 20px; }
.feature-card h3 { font-size: 1.2rem; }
.feature-card ul li { font-size: 0.95rem; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.integration-card { padding: 20px 14px; }
.final-cta h2 { font-size: 2rem; }
details { padding: 18px; }
summary { font-size: 1rem; }
} @media (max-width: 480px) {
.container { padding: 0 16px; }
.mega-title { font-size: 1.8rem; }
h2 { font-size: 1.4rem; }
.section-padding { padding: 40px 0; }
.stat-number { font-size: 2.4rem; }
.stat-label { font-size: 0.95rem; }
.badge { font-size: 0.75rem; padding: 6px 14px; }
.btn-large { padding: 14px 24px; font-size: 1rem; }
.hero { padding: 40px 0 50px; }
.logo-img { height: 34px; }
.final-cta h2 { font-size: 1.6rem; }
}