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

html{
    scroll-behavior: smooth;
}

body {
  background: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero p {
  margin-top: 10px;
  color: #b5b5b5;
}

.btn {
  margin-top: 30px;
  padding: 14px 32px;
  border-radius: 30px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* SECTIONS */
section {
  padding: 100px 8%;
}

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

/* BENEFITS */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  padding: 40px;
  background: #fdfdfd;
  border-radius: 16px;
  text-align: center;
  font-weight: 500;
}

/* FEATURES */
.features p {
  max-width: 700px;
  color: #b5b5b5;
}

/* CONTACT */
.contact-box {
  margin-top: 30px;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 16px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}


/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step {
  padding: 30px;
  background: #1a1a1a;
  border-radius: 16px;
  text-align: center;
}

/* PHONE SECTION */
.phone-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.phone-text {
  max-width: 450px;
}

.phone-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.phone {
  width: 320px;
  transform: scale(0.2) rotate(45deg);
  transform-origin: center;
  transition: all 0.1s ease;
}

/* INDUSTRIES */
.industries p {
  max-width: 900px;
  color: #b5b5b5;
}

/* CTA */
.cta {
  text-align: center;
  background: #ffffff;
  color: #000;
}

.cta h2{
    margin: 0;
}

.cta p{
    margin-bottom: 30px;
}

.cta .btn.dark {
  background: #000;
  color: #fff;
  margin-top: -20px;
}


.popup-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-modal-content {
  background-color: #1a1a1a;
  margin: 15% auto;
  padding: 20px;
  border-radius: 16px;
  width: 80%;
  max-width: 500px;
}

.popup-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.popup-close:hover {
  color: #000;
}

.mac-section{
    height: 300px;
}

.macbook-mokeup{
    position: absolute;
    width: 1000px;
    height:700px;
    top: 30vh;
    left: -45vw;
    transform:  scale(2);
    object-fit: contain;
    transition: all 0.1s ease;
    z-index: 1;
}






/* Responsive */
@media (max-width: 900px) {
  .phone-section {
    flex-direction: column;
    text-align: center;
  }


.mac-section{
    height: 300px;
}

.macbook-mokeup{
    position: absolute;
    width: 500px;
    height:300px;
    transform:  scale(2) translate(50%, 80%);
    object-fit: contain;
    transition: all 0.1s ease;
    z-index: 1;
}
}
