/* Header Styles */
.header {
background: white;
padding: 0.7rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
width: 100%;
top: 0;
z-index: 999;
}

.header .container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-img {
height: 4.3rem;
}

.nav {
display: flex;
}

.nav-list {
list-style: none;
display: flex;
gap: 1.5rem;
margin: 0;
padding: 0;
}

.nav-list a {
font-size: 1.2rem;
text-decoration: none;
color: #5d5f63;
font-weight: 500;
transition: color 0.3s ease;
}

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

.login-btn {
background: #e02e2e;
color: white;
padding: 0.8rem 2rem;
border-radius: 100px;
font-weight: 600;
text-decoration: none;
margin-left: 1rem;
transition: background-color 0.3s ease;
}

.login-btn:hover {
background-color: #ca1717;
color: white;
}

.hamburger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
background: none;
border: none;
cursor: pointer;
}

.hamburger span {
width: 26px;
height: 3px;
background: var(--primary);
border-radius: 2px;
transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
display: none;
flex-direction: column;
background: white;
padding: 1rem 2rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
position: absolute;
top: 130px;
left: 0;
right: 0;
z-index: 3;
}

.mobile-nav.open {
display: flex;
}

.mobile-nav a {
padding: 0.7rem 0;
color: #98A0B0;
font-size: 1.1rem;
text-decoration: none;
border-bottom: 1px solid #eee;
}

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

@media (max-width: 768px) {
.nav,
.login-btn {
  display: none;
}

.hamburger {
  display: flex;
}
}

/* Spacer to see navbar effect */
.content {
padding-top: 100px;
}

/* Desktop Dropdown */
.nav-list .dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background: white;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 10;
  width: 12rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
  margin-bottom: 0.5rem;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu a {
  text-decoration: none;
  color: #5d5f63;
  font-weight: 500;
  font-size: 1rem;
  display: block;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: var(--primary);
}

/* Mobile Dropdown */
.mobile-dropdown {
  width: 100%;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #5d5f63;
  padding: 0.7rem 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
}

.mobile-dropdown-menu a {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #98A0B0;
  text-decoration: none;
}

.mobile-dropdown-menu a:hover {
  color: var(--primary);
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}

.dropdown-icon {
  font-size: 1rem;
  vertical-align: middle;
  margin-left: 4px;
  color: #5d5f63;
}

.mobile-dropdown-icon {
  font-size: 1.1rem;
  float: right;
  transition: transform 0.3s ease;
  color: #5d5f63;
}

.mobile-dropdown.open .mobile-dropdown-icon {
  transform: rotate(180deg);
}


/* Footer */
.footer {
padding: 1rem 4rem;
text-align: center;
display: flex;
align-items: center;
justify-content: space-between;
}

.footer-logo {
height: 60px;
margin-bottom: 1rem;
}

@media (max-width: 780px) {
.footer {
flex-direction: column;
padding: 1rem;
}
}

:root {
--primary: #ef1925;
--primary-light: #ff6b6f;
--primary-lighter: #ffebec;
--primary-dark: #d91620;
--primary-gradient: linear-gradient(135deg, #ef1925 0%, #ff6b6f 100%);
--white: #ffffff;
--off-white: #f9f9f9;
--gray-100: #f8f9fa;
--gray-200: #e9ecef;
--gray-300: #dee2e6;
--gray-400: #ced4da;
--gray-500: #adb5bd;
--gray-600: #6c757d;
--gray-700: #495057;
--gray-800: #343a40;
--gray-900: #212529;
--black: #000000;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
line-height: 1.6;
color: var(--gray-900);
font-family: 'Open Sans', sans-serif;
background-color: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
line-height: 1.2;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

.container {
width: 100%;
max-width: 1300px;
margin: 0 auto;
padding: 0 30px;
}

.btn {
display: inline-block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
text-align: center;
cursor: pointer;
border: none;
border-radius: 50px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
padding: 18px 40px;
font-size: 1.25rem;
position: relative;
overflow: hidden;
z-index: 1;
}

.btn::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 0;
background-color: rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
z-index: -1;
}

.btn:hover::after {
height: 100%;
}

.btn-primary {
background: var(--primary-gradient);
color: var(--white);
box-shadow: 0 10px 20px rgba(239, 25, 37, 0.3);
}

.btn-primary:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(239, 25, 37, 0.4);
color: var(--white);
}

.btn-secondary {
background-color: var(--white);
color: var(--primary);
border: 2px solid var(--primary);
box-shadow: 0 5px 15px rgba(239, 25, 37, 0.1);
}

.btn-secondary:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(239, 25, 37, 0.2);
color: var(--primary);
}

.section-title {
font-size: 3.5rem;
margin-bottom: 30px;
color: var(--gray-900);
position: relative;
display: inline-block;
letter-spacing: -1px;
}

.section-title span {
color: var(--primary);
}

.section-title::after {
content: '';
position: absolute;
bottom: -15px;
left: 0;
width: 80px;
height: 5px;
background: var(--primary-gradient);
border-radius: 5px;
}

.section-subtitle {
color: var(--primary);
font-weight: 700;
font-size: 1.3rem;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 2px;
display: inline-block;
position: relative;
}

.section-subtitle::before {
content: '';
position: absolute;
top: 50%;
left: -30px;
width: 20px;
height: 2px;
background-color: var(--primary);
transform: translateY(-50%);
}

.text-center {
text-align: center;
display: flex;
flex-direction: column;
}

.text-center .section-title::after {
left: 50%;
transform: translateX(-50%);
}

.text-center .section-subtitle::before {
display: none;
}

.highlight-box {
background-color: var(--primary-lighter);
border-left: 5px solid var(--primary);
padding: 20px 25px;
border-radius: 0 10px 10px 0;
margin: 30px 0;
}

.highlight-box p {
color: var(--gray-800);
font-size: 1.2rem;
font-weight: 500;
margin: 0;
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}

.animate-fadeInUp {
animation: fadeInUp 0.8s ease forwards;
}

.animate-pulse {
animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--white) 0%, var(--primary-lighter) 100%);
padding: 180px 0 150px;
position: relative;
overflow: hidden;
}

.hero::before,
.hero::after {
content: '';
position: absolute;
border-radius: 50%;
background-color: rgba(239, 25, 37, 0.05);
}

.hero::before {
top: -200px;
right: -200px;
width: 600px;
height: 600px;
}

.hero::after {
bottom: -250px;
left: -250px;
width: 500px;
height: 500px;
}

.hero-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 1;
}

.hero h1 {
font-size: 4rem;
margin-bottom: 50px;
color: var(--gray-900);
font-weight: 900;
line-height: 1.1;
letter-spacing: -2px;
animation: fadeInUp 0.8s ease forwards;
}

.hero h1 span {
color: var(--primary);
position: relative;
display: inline-block;
}

.hero h1 span::after {
content: '';
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 10px;
background-color: rgba(239, 25, 37, 0.2);
z-index: -1;
}

.hero .btn {
animation: fadeInUp 0.8s ease 0.2s forwards;
opacity: 0;
transform: translateY(30px);
}

/* Overview Section */
.overview {
padding: 120px 0;
background-color: var(--white);
position: relative;
}

.overview::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 40%;
height: 100%;
background-color: var(--gray-100);
clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
z-index: 0;
}

.overview-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 1;
}

.overview p {
font-size: 1.8rem;
color: var(--gray-700);
margin-bottom: 40px;
line-height: 1.6;
font-weight: 500;
}

/* Features Section */
.features {
padding: 150px 0;
background-color: var(--off-white);
position: relative;
overflow: hidden;
}

.features::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: radial-gradient(var(--primary-lighter) 1px, transparent 1px);
background-size: 30px 30px;
opacity: 0.3;
z-index: 0;
}

.features-container {
display: flex;
align-items: center;
gap: 80px;
position: relative;
z-index: 1;
}

.features-content {
flex: 1;
}

.features-image {
flex: 1;
position: relative;
transform: perspective(1000px) rotateY(-5deg);
transition: all 0.5s ease;
}

.features-image:hover {
transform: perspective(1000px) rotateY(0deg);
}

.features-image img {
width: 100%;
border-radius: 20px;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
transition: transform 0.5s ease;
}

.features-image::before {
content: '';
position: absolute;
top: -20px;
left: -20px;
width: 100%;
height: 100%;
border: 3px solid var(--primary);
border-radius: 20px;
z-index: -1;
}

.features-list {
list-style: none;
margin: 40px 0;
}

.features-list li {
position: relative;
padding-left: 45px;
margin-bottom: 30px;
font-size: 1.4rem;
color: var(--gray-800);
font-weight: 500;
}

.features-list li::before {
content: '✓';
position: absolute;
left: 0;
top: 0;
width: 35px;
height: 35px;
background-color: var(--primary-lighter);
color: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works {
padding: 150px 0;
background-color: var(--white);
position: relative;
}

.how-it-works::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 200px;
background: linear-gradient(to bottom, transparent, rgba(239, 25, 37, 0.03));
}

.steps-container {
display: flex;
justify-content: space-between;
margin-top: 80px;
position: relative;
}

.steps-container::before {
content: '';
position: absolute;
top: 70px;
left: 100px;
right: 100px;
height: 3px;
background: linear-gradient(to right, var(--primary-light), var(--primary), var(--primary-light));
z-index: 0;
border-radius: 3px;
}

.step {
flex: 1;
text-align: center;
padding: 0 30px;
position: relative;
z-index: 1;
}

.step-number {
width: 140px;
height: 140px;
background: var(--primary-gradient);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
font-weight: 800;
margin: 0 auto 40px;
font-family: 'Montserrat', sans-serif;
position: relative;
box-shadow: 0 15px 30px rgba(239, 25, 37, 0.3);
transition: all 0.3s ease;
}

.step:hover .step-number {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(239, 25, 37, 0.4);
}

.step-title {
font-size: 2rem;
margin-bottom: 20px;
color: var(--gray-900);
font-weight: 700;
}

.step p {
color: var(--gray-700);
font-size: 1.2rem;
font-weight: 500;
}

/* Use Cases Section */
.use-cases {
padding: 150px 0;
background-color: var(--primary-lighter);
position: relative;
overflow: hidden;
}

.use-cases::before,
.use-cases::after {
content: '';
position: absolute;
width: 500px;
height: 500px;
background-color: var(--primary-light);
border-radius: 50%;
opacity: 0.1;
}

.use-cases::before {
top: -250px;
right: -250px;
}

.use-cases::after {
bottom: -250px;
left: -250px;
}

.use-cases-container {
display: flex;
gap: 50px;
margin-top: 80px;
position: relative;
z-index: 1;
}

.use-case {
flex: 1;
background-color: var(--white);
border-radius: 20px;
padding: 60px 40px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transform: translateY(0);
}

.use-case:hover {
transform: translateY(-20px);
box-shadow: 0 30px 60px rgba(239, 25, 37, 0.15);
}

.use-case-icon {
width: 100px;
height: 100px;
background-color: var(--primary-lighter);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 40px;
transition: all 0.3s ease;
}

.use-case:hover .use-case-icon {
background-color: var(--primary-lighte);
}

.use-case-icon svg {
width: 50px;
height: 50px;
color: var(--primary);
}

.use-case-title {
font-size: 2.2rem;
margin-bottom: 25px;
color: var(--gray-900);
font-weight: 700;
}

.use-case p {
color: var(--gray-700);
font-size: 1.2rem;
line-height: 1.7;
}

.use-case-icon ion-icon {
  font-size: 3rem;
  color: var(--primary);
}


/* CTA Section */
.cta {
padding: 100px 0;
text-align: center;
background-color: var(--white);
position: relative;
overflow: hidden;
}

.cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, rgba(239, 25, 37, 0.03) 0%, transparent 70%);
}

.cta-content {
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.cta h2 {
font-size: 4rem;
margin-bottom: 30px;
color: var(--gray-900);
letter-spacing: -1px;
}

.cta h2 span{
  color: var(--primary);
}

.cta p {
font-size: 1.5rem;
color: var(--gray-700);
margin-bottom: 60px;
font-weight: 500;
line-height: 1.6;
}

.cta .btn {
padding: 20px 50px;
font-size: 1.4rem;
box-shadow: 0 15px 30px rgba(239, 25, 37, 0.3);
}

/* Footer */
footer {
padding: 80px 0 60px;
background-color: var(--gray-100);
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.legal-links {
display: flex;
flex-direction: column;
gap: 12px;
}

.legal-links-title {
font-weight: 700;
margin-bottom: 10px;
color: var(--gray-800);
font-family: 'Montserrat', sans-serif;
font-size: 1.2rem;
}

.legal-links a {
color: var(--gray-600);
font-size: 1.1rem;
transition: all 0.3s ease;
position: relative;
padding-left: 15px;
}

.legal-links a::before {
content: '›';
position: absolute;
left: 0;
top: 0;
color: var(--primary);
font-weight: bold;
transition: all 0.3s ease;
}

.legal-links a:hover {
color: var(--primary);
padding-left: 20px;
}

.legal-links a:hover::before {
left: 5px;
}

.copyright {
color: var(--gray-600);
font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
.hero h1 {
font-size: 4.5rem;
}

.section-title {
font-size: 3rem;
}

.features-list li, 
.overview p, 
.step p, 
.use-case p {
font-size: 1.2rem;
}

.step-number {
width: 120px;
height: 120px;
font-size: 3.5rem;
}
}

@media (max-width: 992px) {
.hero h1 {
font-size: 3.8rem;
}

.section-title {
font-size: 2.8rem;
}

.features-container {
flex-direction: column;
gap: 60px;
}

.features-image::before {
display: none;
}

.steps-container {
flex-direction: column;
gap: 60px;
}

.steps-container::before {
display: none;
}

.use-cases-container {
flex-direction: column;
gap: 40px;
}

.cta h2 {
font-size: 3.5rem;
}

.overview p {
font-size: 1.5rem;
}
}

@media (max-width: 768px) {
.hero {
padding: 120px 0 100px;
}

.overview, .features, .how-it-works, .use-cases, .cta {
padding: 100px 0;
}

.footer-content {
flex-direction: column;
gap: 40px;
text-align: center;
}

.legal-links {
align-items: center;
}

.legal-links a {
padding-left: 0;
}

.legal-links a::before {
display: none;
}

.legal-links a:hover {
padding-left: 0;
}

.hero h1 {
font-size: 3.2rem;
}

.section-title {
font-size: 2.5rem;
}

.overview p {
font-size: 1.3rem;
}

.cta h2 {
font-size: 3rem;
}

.cta p {
font-size: 1.3rem;
}

.btn {
padding: 15px 30px;
font-size: 1.1rem;
}
}

@media (max-width: 576px) {
.container {
padding: 0 20px;
}

.hero h1 {
font-size: 2.5rem;
}

.section-title {
font-size: 2.2rem;
}

.section-subtitle {
font-size: 1.1rem;
}

.overview p {
font-size: 1.2rem;
}

.features-list li {
font-size: 1.1rem;
padding-left: 35px;
}

.features-list li::before {
width: 25px;
height: 25px;
font-size: 0.9rem;
}

.step-title {
font-size: 1.6rem;
}

.step-number {
width: 100px;
height: 100px;
font-size: 3rem;
}

.use-case-title {
font-size: 1.8rem;
}

.cta h2 {
font-size: 2.5rem;
}

.cta p {
font-size: 1.1rem;
}

.cta .btn {
padding: 15px 30px;
font-size: 1.1rem;
}
}


.faq-section {
max-width: 900px;
margin: 0 auto;
padding: 60px 0;
position: relative;
}

.faq-section::before {
content: '';
position: absolute;
width: 300px;
height: 300px;
background-color: rgba(255, 58, 76, 0.05);
border-radius: 50%;
top: -100px;
left: -150px;
z-index: -1;
}

.faq-section::after {
content: '';
position: absolute;
width: 250px;
height: 250px;
background-color: rgba(255, 58, 76, 0.05);
border-radius: 50%;
bottom: -50px;
right: -100px;
z-index: -1;
}

.faq-header {
text-align: center;
margin-bottom: 50px;
position: relative;
}

.section-label {
font-size: 14px;
font-weight: 600;
color: #ff3a4c;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

.faq-header h2 {
font-size: 38px;
font-weight: 800;
color: #222;
margin-bottom: 15px;
position: relative;
display: inline-block;
}

.faq-header h2 span {
color: #ff3a4c;
}

.header-underline {
width: 80px;
height: 3px;
background-color: #ff3a4c;
margin: 0 auto;
}

.faq-container {
background-color: #fff;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
overflow: hidden;
margin-bottom: 40px;
}

.faq-item {
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
border-bottom: none;
}

.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
padding: 25px 30px;
cursor: pointer;
transition: all 0.3s ease;
}

.faq-question:hover {
background-color: rgba(255, 58, 76, 0.03);
}

.faq-question h3 {
font-size: 1.4rem;
font-weight: 600;
color: #333;
transition: color 0.3s ease;
flex: 1;
padding-right: 20px;
}

.faq-item.active .faq-question h3 {
color: #ff3a4c;
}

.toggle-icon {
position: relative;
width: 20px;
height: 20px;
flex-shrink: 0;
}

.line {
position: absolute;
background-color: #ff3a4c;
transition: transform 0.3s ease;
}

.line-1 {
width: 100%;
height: 2px;
top: 50%;
transform: translateY(-50%);
}

.line-2 {
width: 2px;
height: 100%;
left: 50%;
transform: translateX(-50%);
}

.faq-item.active .line-2 {
transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease, padding 0.5s ease;
background-color: rgba(255, 58, 76, 0.02);
}

.faq-item.active .faq-answer {
max-height: 300px;
padding: 0 30px 25px 30px;
}

.faq-answer p {
color: #666;
font-size: 1.3rem;
line-height: 1.7;
}

.cta-container {
text-align: center;
margin-top: 40px;
}

.cta-button {
background-color: #ff3a4c;
color: white;
border: none;
border-radius: 30px;
padding: 14px 32px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(255, 58, 76, 0.3);
}

.cta-button:hover {
background-color: #e62e3e;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255, 58, 76, 0.4);
}

@media (max-width: 768px) {
.faq-header h2 {
font-size: 30px;
}

.faq-question {
padding: 20px;
}

.faq-question h3 {
font-size: 1.1rem;
}
.faq-answer p{
font-size: 1rem;
}

.faq-item.active .faq-answer {
padding: 0 20px 20px 20px;
}
}