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

body {
    background-color: aliceblue;
    font-family: 'Google Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

.highlight {
    color: #4f46e5;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #1a1a1a;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover {
    color: #4f46e5;
}

.nav-bar {
    height: 70px;
    display: flex;
    background-color: rgba(240, 248, 255, 0.85);
    backdrop-filter: blur(10px);
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
    color: #4f46e5;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 500;
}

.auth-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 500;
}

.signup-btn {
    background-color: #4f46e5;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background-color: #4f46e5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(222, 209, 222, 0.3);
}

#header {
    width: 100%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.badge {
    background-color: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.subtitle {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-action {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
}

.input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(222, 209, 222, 0.2);
}

.signup-btn-large {
    background-color: #4f46e5;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.signup-btn-large:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 209, 222, 0.3);
}

.micro-text {
    font-size: 0.85rem;
    color: #777;
}

.hero-image-wrapper {
    margin-top: 60px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: none; 
    box-shadow: 0 30px 60px -12px rgba(79, 70, 229, 0.4), 
                0 18px 36px -18px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(2deg) translateY(0); 
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
    box-shadow: 0 40px 80px -12px rgba(79, 70, 229, 0.5), 
                0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    color: #4f46e5;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    color: #1a1a1a;
}

.section-subtitle {
    color: #636e72;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.features-container, 
.howto-container, 
.testimonies-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
    text-align: left;
}

.feature-card, 
.howto-card, 
.testimony-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover, 
.howto-card:hover, 
.testimony-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    background-color: aliceblue;
    color: #4f46e5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.feature-card h3, .howto-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 1.25rem;
}

.feature-card p, .howto-card p, .testimony-card p {
    color: #636e72;
    line-height: 1.6;
}

.quote {
    font-style: italic;
    margin-bottom: 20px !important;
    flex-grow: 1;
}

.author {
    color: #4f46e5;
    font-weight: 600;
}

.ready {
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    color: white;
    border-radius: 24px;
    padding: 80px 40px;
    margin: 80px 5%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.ready h2 {
    color: white;
}

.ready p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.ready-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: white;
    color: #4f46e5;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #f8f8f8;
    color: #4f46e5;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 30px;
    border-radius: 25px;
    font-weight: bold;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.ready-micro {
    font-size: 0.9rem !important;
    opacity: 0.7 !important;
    margin-bottom: 0 !important;
}


footer {
    border-top: 1px solid #e5e5e5;
    background-color: #ffffff;
    padding-top: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer h4 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a1a1a;
}

footer ul {
    list-style: none;
    text-align: center;
}

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

footer ul li a {
    color: #636e72;
}

footer ul li a:hover {
    color: #4f46e5;
}

.copyright {
    border-top: 1px solid #e5e5e5;
    padding: 25px 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

body, html {
    overflow-x: hidden; 
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active, 
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.features-container .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-container .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-container .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-container .feature-card:nth-child(4) { transition-delay: 0.4s; }
.features-container .feature-card:nth-child(5) { transition-delay: 0.5s; }
.features-container .feature-card:nth-child(6) { transition-delay: 0.6s; }


@media (max-width: 768px) {
    .reveal-up {
        transform: translateY(30px);
    }
    .reveal-right {
        transform: translateX(30px);
    }
    .features-container .feature-card {
        transition-delay: 0s !important; 
    }
}

.btn-primary:hover {
    border-color: #4338ca;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,.04);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
}

.pricing-card.highlighted {
  border: 2px solid #4f46e5;
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.pricing-header .price {
  font-size: 2.5rem;
  font-weight: 600;
  color: #4f46e5;
  margin-bottom: 10px;
}

.pricing-header .price span {
  font-size: 3rem;
}

.pricing-header .pricing-desc {
  font-size: 1rem;
  color: #636e72;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #636e72;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 700;
}

.pricing-btn {
  align-self: flex-start;
}
.pricing-card .badge {
  margin-bottom: 1rem;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: background-color .3s ease, color .3s ease, transform .2s ease;
  cursor: pointer;
}

.pricing-primary-btn {
  background-color: #4f46e5;
  color: #fff;
}

.pricing-primary-btn:hover {
  background-color: #4338ca;
  transform: translateY(-2px);
}


.pricing-secondary-btn {
  background-color: transparent;
  color: #4f46e5;
  border: 2px solid #4f46e5;
}

.pricing-secondary-btn:hover {
  background-color: rgba(79,70,229,.1);
}

.pricing-card.highlighted {
  border: 2px solid #4f46e5;
}


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

    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
    
    .hero-action {
        flex-direction: column;
    }
    
    .ready-buttons {
        flex-direction: column;
    }
    
    .ready {
        margin: 40px 20px;
        padding: 50px 20px;
    }

    .nav-bar {
        padding: 0 15px; 
    }

    .logo {
        font-size: 20px;
        gap: 6px;
    }
    
    .logo svg {
        width: 22px;
        height: 22px;
    }

    .auth-buttons {
        gap: 12px; 
    }

    .login-btn, .signup-btn {
        white-space: nowrap; 
        font-size: 0.9rem;
    }

    .signup-btn {
        padding: 8px 18px; 
    }

    .pricing-container {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .pricing-card {
        padding: 30px;
    }
}