:root {
--inquilead-purple: #9b30fa;
--inquilead-lightPurple: #b868ff;
--inquilead-darkPurple: #7922c9;
--inquilead-black: #0d0d14;
--inquilead-darkGray: #1a1a2e;
--inquilead-gray: #2c2c42;
--inquilead-lightGray: #4c4c6a;
--white: #ffffff;
--radius: 0.75rem;
}

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

body {
font-family: 'Inter', sans-serif;
background-color: var(--inquilead-black);
color: var(--white);
line-height: 1.6;
}

.container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
}

a {
text-decoration: none;
color: var(--white);
transition: color 0.3s ease;
}

ul {
list-style: none;
}

img {
max-width: 100%;
}

.rounded-image {
border-radius: 1rem;
overflow: hidden;
}

.section-header {
text-align: center;
margin-bottom: 3rem;
}

.section-header h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
background: linear-gradient(to right, var(--inquilead-purple), var(--inquilead-lightPurple));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
display: inline-block;
}

.section-header p {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.8);
max-width: 800px;
margin: 0 auto;
}

/* Glassmorphism */
.glass-card {
background-color: rgba(44, 44, 66, 0.2);
backdrop-filter: blur(12px);
border: 1px solid rgba(76, 76, 106, 0.2);
border-radius: var(--radius);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Gradients */
.gradient-text {
background: linear-gradient(to right, var(--inquilead-purple), var(--inquilead-lightPurple));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

.gradient-text-sunrise {
background: linear-gradient(to right, #ffa500, #ff8c00, #ff4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

.gradient-text-ocean {
background: linear-gradient(to right, #00bfff, #0080ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

.gradient-text-sunset {
background: linear-gradient(to right, #e6007e, var(--inquilead-purple));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

/* Animation Effects */
@keyframes floating {
0%, 100% {
  transform: translateY(0);
}
50% {
  transform: translateY(-15px);
}
}

.floating {
animation: floating 6s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% {
  box-shadow: 0 0 0 0 rgba(155, 48, 250, 0.7);
}
50% {
  box-shadow: 0 0 0 10px rgba(155, 48, 250, 0);
}
}

@keyframes shine {
0% {
  left: -100%;
  opacity: 0;
}
100% {
  left: 100%;
  opacity: 0.5;
}
}

.button-shimmer {
overflow: hidden;
position: relative;
}

.button-shimmer::after {
content: "";
position: absolute;
top: -50%;
left: -100%;
width: 100%;
height: 200%;
background: linear-gradient(
  to right,
  rgba(255, 255, 255, 0) 0%,
  rgba(255, 255, 255, 0.3) 50%,
  rgba(255, 255, 255, 0) 100%
);
transform: rotate(30deg);
transition: all 0.5s;
}

.button-shimmer:hover::after {
animation: shine 1.5s forwards;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 20, 0.6);
  backdrop-filter: blur(7px);
  padding: 0.9rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(76, 76, 106, 0.3);
}
.navbar.scrolled {
  background: rgba(13, 13, 20, 0.9);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 0.8rem 0;
}
.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo {
  font-size: 1.75rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.navbar-links {
  display: flex;
  gap: 2.5rem;
}
.navbar-link {
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}
.navbar-link:hover {
  color: var(--inquilead-purple);
  transform: translateY(-2px);
}
.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--inquilead-purple);
  transition: width 0.3s ease;
}
.navbar-link:hover::after {
  width: 100%;
}
.mobile-menu-button {
  display: none;
  background: rgba(13, 13, 20, 0.6);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.mobile-menu-button:hover {
  background: var(--inquilead-darkPurple);
}
.mobile-menu {
  display: none;
  background: rgba(13, 13, 20, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-menu-button {
    display: block;
  }
}

/* Gradient Button Styles */
.gradient-button {
  display: inline-block;
  background: linear-gradient(to right, #ff5599, #9b30fa);
  color: #ffffff;
  padding: 0.55rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(155, 48, 250, 0.3);
  margin-left: 1rem;
}
.gradient-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #ff55997b, #9c30faba);

  box-shadow: 0 6px 12px rgba(155, 48, 250, 0.3);
}
/* Hero Section */
.hero {
padding: 8rem 0 4rem;
overflow: hidden;
}

.hero-content {
display: flex;
align-items: center;
gap: 2rem;
}

.hero-text {
flex: 1;
}

.hero-title {
font-size: 3rem;
line-height: 1.2;
margin-bottom: 1.5rem;
}
.glow {
  box-shadow: 0 0 100px rgba(139, 92, 246, 0.5);
}
.met1 {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #cccccc 55%,
    #888888 80%,
    #444444 105%,
    #000000 170%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.met2 {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #cccccc 55%,
    #888888 90%,
    #444444 115%,
    #000000 195%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}

.hero-subtitle {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 2rem;
}

.hero-buttons {
display: flex;
align-items: center;
gap: 1.5rem;
}

.hero-link {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--white);
transition: color 0.3s ease;
}

.hero-link:hover {
color: var(--inquilead-purple);
}

.hero-image {
flex: 1;
display: flex;
justify-content: center;
}

.hero-image-container {
max-width: 600px;
border-radius: var(--radius);
overflow: hidden;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}



/* Features Section */
/* Container (if not already defined) */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* FEATURES SECTION STYLES */
.features-section {
  padding: 2rem 0; /* Approximately py-16 */
  margin-top: 1rem;
}

.features-header {
  text-align: center;
  margin-bottom: 2rem;
}

.features-header h2 {
  font-size: 2.25rem; /* Adjust to taste (similar to text-3xl) */
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
}

.features-header .highlight {
  color: #8B5CF6; /* Primary color (purple) */
}

.features-header p {
  color: #9CA3AF; /* Gray-400 */
  font-size: 1rem;
  max-width: 48rem; /* Approx max-w-3xl */
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  background: rgba(26, 27, 30, 0.9); /* bg-[#1a1b1e]/90 */
  border: 1px solid rgba(31, 41, 55, 0.5); /* border-gray-800/50 */
  border-radius: 1rem; /* rounded-xl */
  padding: 2rem; /* p-8 */
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-0.5rem) scale(1.05); /* hover:-translate-y-2 & scale-105 */
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
  border-color: rgba(139, 92, 246, 0.5); /* hover:border-primary/50 */
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(139,92,246,0.1), transparent, rgba(139,92,246,0.1));
  opacity: 0.1;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -500% 0;
  }
  100% {
    background-position: 500% 0;
  }
}

.icon-container {
  width: 3rem; /* w-12 */
  height: 3rem; /* h-12 */
  background: rgba(139, 92, 246, 0.1); /* Approx bg-primary/10 */
  border-radius: 0.75rem; /* rounded-xl */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem; /* mb-6 */
}

.icon-container i {
  font-size: 1.5rem; /* text-2xl */
  color: #8B5CF6; /* Primary color */
}

.feature-card h3 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 600; /* font-semibold */
  margin-bottom: 1rem; /* mb-4 */
  color: #ffffff;
}

.feature-card p {
  color: #9CA3AF; /* text-gray-400 */
  font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
padding: 4rem 0;
}

.steps-container {
display: flex;
flex-direction: column;
gap: 3rem;
max-width: 800px;
margin: 0 auto;
}

.step {
display: flex;
align-items: flex-start;
gap: 1.5rem;
}

.step-icon-container {
position: relative;
flex-shrink: 0;
}

.step-icon {
width: 3rem;
height: 3rem;
border-radius: 9999px;
background-color: rgba(155, 48, 250, 0.2);
display: flex;
align-items: center;
justify-content: center;
}

.step-icon i {
color: var(--inquilead-purple);
font-size: 1.2rem;
}

.step-number {
position: absolute;
top: -0.5rem;
right: -0.5rem;
width: 1.5rem;
height: 1.5rem;
border-radius: 9999px;
background-color: var(--inquilead-purple);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: 700;
}

.step-content h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: var(--white);
}

.step-content p {
color: rgba(255, 255, 255, 0.7);
}

/* Pricing Section */
.pricing {
padding: 4rem 0;
background: radial-gradient(circle at center, rgba(155, 48, 250, 0.1) 0%, rgba(13, 13, 20, 0) 70%);
}

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

.pricing-card {
padding: 2rem;
display: flex;
flex-direction: column;
height: 100%;
text-align: center;
transition: all 0.3s ease;
}

.pricing-card.popular {
position: relative;
border: 2px solid var(--inquilead-purple);
animation: pulse 2s infinite;
}

.popular-badge {
position: absolute;
top: -1rem;
left: 50%;
transform: translateX(-50%);
background-color: var(--inquilead-purple);
color: white;
padding: 0.25rem 1rem;
border-radius: 9999px;
font-size: 0.875rem;
font-weight: 500;
}

.pricing-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--white);
}

.price-container {
display: flex;
align-items: baseline;
justify-content: center;
margin-bottom: 1rem;
}

.price {
font-size: 2.5rem;
font-weight: 700;
color: var(--white);
}

.price-period {
color: rgba(255, 255, 255, 0.7);
margin-left: 0.25rem;
}

.price-description {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 2rem;
}

.feature-list {
margin-bottom: 2rem;
flex-grow: 1;
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.feature-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
}

.feature-check {
width: 1.25rem;
height: 1.25rem;
background-color: rgba(155, 48, 250, 0.2);
border-radius: 9999px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 0.125rem;
}

.feature-check i {
color: var(--inquilead-purple);
font-size: 0.75rem;
}

.feature-item span {
color: rgba(255, 255, 255, 0.7);
text-align: left;
}

.pricing-button {
width: 100%;
padding: 0.75rem 1.5rem;
border-radius: var(--radius);
border: none;
font-family: 'Inter', sans-serif;
font-weight: 500;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
background-color: var(--inquilead-darkGray);
color: var(--white);
border: 1px solid rgba(76, 76, 106, 0.5);
}

.pricing-button:hover {
background-color: var(--inquilead-gray);
}

.pricing-button.popular-button {
background-color: var(--inquilead-purple);
border: none;
}

.pricing-button.popular-button:hover {
background-color: var(--inquilead-lightPurple);
}


/* FAQ Section */
.faq {
padding: 6rem 0;
background: radial-gradient(circle at center, rgba(155, 48, 250, 0.1) 0%, rgba(13, 13, 20, 0) 70%);
}

.faq-container {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
border-bottom: 1px solid rgba(76, 76, 106, 0.3);
}

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

.faq-question {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 0;
background: none;
border: none;
cursor: pointer;
text-align: left;
}

.faq-question h3 {
font-size: 1.2rem;
color: var(--white);
font-weight: 500;
}

.faq-question i {
color: var(--inquilead-purple);
transition: transform 0.3s ease;
}

.faq-question.active i {
transform: rotate(180deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-answer.active {
max-height: 200px;
padding-bottom: 1.5rem;
}

.faq-answer p {
color: rgba(255, 255, 255, 0.7);
}



/* Footer */
.footer {
padding: 6rem 0 2rem;
background-color: var(--inquilead-darkGray);
}

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

.footer h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
color: var(--white);
}

.footer-company p {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 1.5rem;
}

.footer-social {
display: flex;
gap: 1rem;
}

.social-icon {
width: 2.5rem;
height: 2.5rem;
border-radius: 9999px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(76, 76, 106, 0.3);
color: rgba(255, 255, 255, 0.7);
transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
background-color: var(--inquilead-purple);
color: var(--white);
}

.footer-links ul {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.7);
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--inquilead-purple);
}

.footer-contact ul {
display: flex;
flex-direction: column;
gap: 1rem;
}

.footer-contact li {
display: flex;
align-items: flex-start;
gap: 1rem;
}

.footer-contact i {
color: var(--inquilead-purple);
margin-top: 0.25rem;
}

.footer-contact span {
color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
display: flex;
}

.newsletter-input {
flex-grow: 1;
padding: 0.75rem 1rem;
border-radius: var(--radius) 0 0 var(--radius);
border: 1px solid rgba(76, 76, 106, 0.5);
background-color: var(--inquilead-gray);
color: var(--white);
font-family: 'Inter', sans-serif;
}

.newsletter-input:focus {
outline: none;
border-color: var(--inquilead-purple);
}

.newsletter-button {
padding: 0.75rem 1.5rem;
border-radius: 0 var(--radius) var(--radius) 0;
border: none;
background-color: var(--inquilead-purple);
color: var(--white);
font-family: 'Inter', sans-serif;
font-weight: 500;
cursor: pointer;
transition: background-color 0.3s ease;
}

.newsletter-button:hover {
background-color: var(--inquilead-lightPurple);
}

.footer-bottom {
padding-top: 2rem;
border-top: 1px solid rgba(76, 76, 106, 0.3);
display: flex;
justify-content: space-between;
align-items: center;
}

.footer-copyright {
color: rgba(255, 255, 255, 0.6);
font-size: 0.875rem;
}

.footer-legal {
display: flex;
gap: 1.5rem;
}

.footer-legal a {
color: rgba(255, 255, 255, 0.6);
font-size: 0.875rem;
transition: color 0.3s ease;
}

.footer-legal a:hover {
color: var(--inquilead-purple);
}

/* Animated Button Styles */
.animated-button {
display: inline-block;
padding: 0.75rem 1.5rem;
border-radius: var(--radius);
font-weight: 500;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
transform: translate3d(0, 0, 0);
cursor: pointer;
text-align: center;
}

.animated-button:hover {
transform: translateY(-2px) scale(1.02);
}

.animated-button:active {
transform: translateY(1px) scale(0.98);
}

.animated-button.gradient {
background: linear-gradient(to right, var(--inquilead-purple), var(--inquilead-lightPurple));
color: var(--white);
box-shadow: 0 4px 15px rgba(155, 48, 250, 0.3);
}

.animated-button.ocean {
background: linear-gradient(to right, #00bfff, #0080ff);
color: var(--white);
box-shadow: 0 4px 15px rgba(0, 128, 255, 0.3);
}

.animated-button.sunrise {
background: linear-gradient(to right, #ffa500, #ff4500);
color: var(--white);
box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.animated-button.neon {
background: linear-gradient(to right, #00ff80, #00b359);
color: var(--white);
box-shadow: 0 4px 15px rgba(0, 179, 89, 0.3);
}

.animated-button.sunset {
background: linear-gradient(to right, #e6007e, var(--inquilead-purple));
color: var(--white);
box-shadow: 0 4px 15px rgba(230, 0, 126, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
.hero-title {
  font-size: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
}

.cta-container h2 {
  font-size: 2rem;
}
}

@media (max-width: 768px) {
.hero-content {
  flex-direction: column;
}

.hero-text {
  text-align: center;
}

.hero-buttons {
  justify-content: center;
}

.desktop-only {
  display: none;
}

.mobile-menu-button {
  display: block;
}

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

.footer-bottom {
  flex-direction: column;
  gap: 1.5rem;
}

.footer-copyright {
  text-align: center;
}

.footer-legal {
  justify-content: center;
}

.cta-buttons {
  flex-direction: column;
  gap: 1rem;
}
}

@media (max-width: 480px) {
.hero-title {
  font-size: 2rem;
}

.hero-subtitle {
  font-size: 1rem;
}

.section-header h2 {
  font-size: 1.75rem;
}

.section-header p {
  font-size: 1rem;
}

.cta-container {
  padding: 2rem 1rem;
}

.cta-container h2 {
  font-size: 1.75rem;
}

.cta-container p {
  font-size: 1rem;
}

.newsletter-form {
  flex-direction: column;
}

.newsletter-input {
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.newsletter-button {
  border-radius: var(--radius);
  width: 100%;
}
}
