* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #2B2B2B;   
  color: #ffffff;
}

/* container */
.container {
  width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background: #2B2B2B;
  height: 100px;
  display: flex;
  align-items: center;
}

/* container */
.header-inner {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */
.logo {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 60px;
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;   /* matches spacing feel */
}

/* sign up */
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #ffffff;
  text-decoration: none;
  margin-left: 10px;
}

/* login button */
.btn-login {
  width: 175px;
  height: 50px;
  background: #BFAFF2;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2B2B2B;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none; 
  cursor: pointer;
  margin-right: 40px;
}
/* hover */
.btn-login:hover {
  transform: translateY(-2px);
  transition: 0.3s;
}

/* HERO SECTION */
.hero {
  background: #2B2B2B;
  padding: 80px 60px 0;
}

/* container */
.hero-inner {
  width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT TEXT */
.hero-text {
  max-width: 465px;
}

/* TITLE */
.hero-text h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 90px;
  color: #ffffff;
  margin-bottom: 50px;
}

/* SUBTITLE */
.hero-text p {
  font-size: 18px;
  line-height: 32px;
  color: rgba(255,255,255,0.4); 
  margin-bottom: 50px;
  margin-top: -20px;
}

/* BUTTON */
.btn-yellow {
  width: 175px;
  height: 50px;
  background: #F8D57E;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: #2B2B2B;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
}

/* RIGHT SIDE */
.hero-visual {
  width: 500px;
  height: 446px;
  background: #333333;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* THIS gives that soft glow like Figma */
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* IMAGE */
.hero-visual img {
  width: 100%;
  border-radius: 12px;
}

/* logos section */
.logos {
  margin-top: 80px;
}

.section-logos {
  background: linear-gradient(
    180deg,
    #2b2b2b 0%,
    #262626 50%,
    #2b2b2b 100%
  );
}

/* divider  */
.divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* logos row */
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

/* logos image */
.logos-row img {
  width: 931px;
  height: 35px;
  filter: brightness(2) contrast(0.7);
}

/* product section */
.product {
  margin-top: 80px;
}

/* product card */
.product-card {
  width: 1080px;
  height: 500px;
  background: #DFD5BF;
  border-radius: 20px;
  margin: 110px auto 0;              
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;            
}

/* dashboard image */
.product-card img {
  width: 1100px;               
  border-radius: 16px;
}

/* features section */
.features {
  padding: 160px 40px 0;
  background: #2B2B2B;
}

/* layout */
.features-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1033px; /* from figma */
  margin: 0 auto;
}

/* each feature */
.feature {
  width: 311px;
  text-align: center;
}

/* icon */
.feature img {
  width: 70px;
  margin-bottom: 20px;
}

/* title */
.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* text */
.feature p {
  font-size: 18px;
  color: #9CA3AF;
  line-height: 1.6;
}

/*Testimonial section */
.testimonial {
  display: flex;
  justify-content: center;
  margin: 90px 0;
}

.testimonial-card {
  background: #A89AD6;
  padding: 80px 0;
  border-radius: 25px;
  align-items: center;
  max-width: 1080px;
  width: 100%;
  height: 460px;
}

/* text */
.testimonial-text {
  max-width: 756px;  
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  color: #2B2B2B;
  margin-bottom: 40px;
  margin-left: 160px;
}

/* user section */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 160px; 
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

/* name */
.user-info h4 {
  margin: 0;
  font-size: 16px;
  color: #2B2B2B;
  opacity: 40%;
  font-weight: 500;
}

/* stars */
.stars {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.stars img {
  width: 20px;
  height: 20px;
}

/* cta section */
.cta {
  background: linear-gradient(180deg, #2b2b2b 0%, #262626 100%);
  padding: 40px 10px 0;
}

/* container */
.cta-container {
  max-width: 1080px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT TEXT */
.cta-text h2 {
  font-size: 60px;
  font-weight: 600;
  color: #ffffff;
  line-height: 90px;
  margin-bottom: 100px;
}

.cta-text p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  line-height: 32px;
  margin-bottom: 50px;
  margin-top: -80px;
}

/* BUTTON */
.cta-btn {
  background: #f8d57e;
  color: #2b2b2b;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
}

/* RIGHT IMAGE */
.cta-image img {
  width: 500px;
  height: 400px;
  border-radius: 20px;
}

/*Footer */
.footer {
  padding: 80px 40px;
  background: #262626;
  color: #fff;
}

/* divider line */
.footer-top {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 40px;
}

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

/* LEFT SIDE */
.logow {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  opacity: 0.7;
  margin-top:30px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* RIGHT SIDE */
.footer-title {
  font-size: 18px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.email-input {
  flex: 1;          
  min-width: 270px; 
}

/* input + button */
.subscribe {
  display: flex;
  align-items: center;
  gap: 12px;
}

.subscribe input {
  background: #3a3a3a;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  width: 220px;
  outline: none;
}

.subscribe input::placeholder {
  color: #aaa;
}

/* send button */
.send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 50px;
  background: #b4a3e5;
  border: none;
  border-radius: 15px;
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  padding: 0; 
}