html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  font-family: 'Inter', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem 1rem 1rem;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #eee;
}
.logo {
  font-weight: 700;
  text-decoration: none;
}

.ai-color {
  background: linear-gradient(90deg, #a78bfa, #7c3aed, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: brightness(1.1) saturate(1.2);
}


nav {
  display: flex;
  gap: 2rem;
}
nav a {
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  background: linear-gradient(90deg, #a78bfa, #7c3aed, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  border-top: 1px solid #eee;
}

/* First Section */

.first-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  padding: 3rem 1rem;
}

#pictures-s1 {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#pictures-s1 img {
  width: 40vw;
  height: auto;
}
#text-s1 {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

#text-s1 h1 {
  font-size: 2.5rem;
  margin: 0;
}

#text-s1 h1:hover, .about h2:hover, #value-prop:hover {
  background: linear-gradient(90deg, #a78bfa, #7c3aed, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: brightness(1.1) saturate(1.2);
}



#text-s1 p {
  font-size: 1.25rem;
  color: #5b5b6e;
  margin: 0;
  font-weight: 500;
  padding-top: 0.5rem;
}

.bt1 {
  padding: 0.8rem 1.4rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 1rem;
  background: #222;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  align-self: center;
}
.bt1 .arrow-icon svg {
  width: 1.8em;
  height: 2.3em;
  display: block;
}
.bt1:hover {
  background: linear-gradient(90deg, #7c3aed, #a78bfa, #818cf8);
  box-shadow: 0 4px 16px 0 rgba(120, 120, 180, 0.12);
  transform: scale(1.03);
}

.bt1 span {
  vertical-align: middle;
  margin-left: 0.3em;
  display: inline-block;
  transition: transform 0.2s;
}
#text-s1:hover span {
  transform: translateX(4px) scale(1.1);
}

.bt2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.45rem 1.1rem;
  font-size: 0.98rem;
  border: none;
  border-radius: 0.7rem;
  background: #222;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  height: 2.2rem;
  line-height: 1.1;
}
.bt2 .arrow-icon svg {
  width: 1.2em;
  height: 1.2em;
  display: block;
}
.bt2 span {
  vertical-align: middle;
  margin-left: 0.2em;
  display: inline-block;
  transition: transform 0.2s;
}
.bt2:hover {
  background: linear-gradient(90deg, #7c3aed, #a78bfa, #818cf8);
  box-shadow: 0 2px 8px 0 rgba(120, 120, 180, 0.10);
  transform: scale(1.04);
}
.bt2:hover span {
  transform: translateX(3px) scale(1.08);
}

/* Second Section */

.about {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 3.5rem 1rem 2.5rem 1rem;
  max-width: 1100px;
  margin: 2rem auto 2rem auto;
}
.about-tile {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  min-width: 180px;
  min-height: 120px;
  height: 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.about-tile.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about-tile h2 {
  margin: 0;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #222;
  text-align: left;
  line-height: 1.05;
  width: 100%;
}
.about-text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.about-text.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about-text p {
  font-size: 1.15rem;
  color: #444;
  text-align: justify;
  margin: 0;
  line-height: 1.7;
  width: 100%;
}

/* ========================================
   INFO SECTION STYLES
   ======================================== */

.info-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0;
  max-width: none;
  margin: 0;
} 

.info-section-header {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
}

  
.info-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-height: 150px;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.info-card h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

.info-card p {
  margin: 0;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
  

/* ========================================
   TABBED FEATURES STYLES
   ======================================== */

.tabbed-features {
  padding: 0rem 2rem 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.section-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.tab-container {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border-radius: 1rem;
  padding: 0.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.tab-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.tab-button {
  background: transparent;
  border: none;
  padding: 0.8rem 0.8rem;
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  min-width: 160px;
}

.tab-button.active {
  background: #222;
  color: white;
}

.tab-button:hover:not(.active) {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.tab-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   CONTACT SECTION STYLES
   ======================================== */

  .contact-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}
  
.contact-card {
  background: #222;
  border-radius: 1rem;
  padding: 3rem;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.contact-card:hover {
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.3);
}

.contact-card h3 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
  line-height: 1.2;
  text-align: left;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin: 0;
  line-height: 1;
  text-align: left;
}

.contact-text {
  flex: 1;
  margin-right: 2rem;
}

.contact-link {
display: inline-flex;
align-items: center;
gap: 2rem;
color: white;
text-decoration: none;
font-size: 1.1rem;
font-weight: 600;
padding: 1rem 2rem;
background: rgba(255, 255, 255, 0.2);
border-radius: 0.75rem;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.3);
width: 320px;
justify-content: center;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.contact-link svg {
  transition: transform 0.3s ease;
}

.contact-link:hover svg {
transform: translateX(4px);
}


.contact-link span {
white-space: nowrap;
}


@media (max-width: 900px) {
  .first-section {
    flex-direction: column;
    gap: 2.5rem;
    padding: 4rem 1rem;

  }
  #pictures-s1 img {
    width: 70vw;
  }

  .logo{
    font-size: 1.5rem;
  }

  .about {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    margin-bottom: -1.5rem;
  }
  .about-tile, .about-text {
    width: 100%;
    min-width: 0;
    padding: 1.2rem 1.5rem;
    height: auto;
  }
  .about-text {
    padding-left: 0;
  }

  /* Mobile responsive for info cards */

  .info-card {
    min-height: auto;
    padding: 1.5rem;
  }
  
  .info-card h3 {
    font-size: 1.2rem;
  }
  
  .info-card p {
    font-size: 0.95rem;
  }

  .info-section {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
    gap: 0.8rem;
    max-width: none;
    margin: 0;
    margin-top: -0.5rem;
  }
  
  /* Mobile responsive for tabbed features */
  .tabbed-features {
    padding: 2.5rem 1rem;
    max-width: 100%;
    margin-top: 1.5rem;
  }
  
  .tab-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 0 auto;
    padding: 0.2;

  }
  
  .tab-button {
    min-width: 120px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

/* Mobile responsive for contact section */
  .contact-section {
    padding: 2.5rem 1rem;
    margin-top: 1.5rem;
  }
  
  .contact-card {
    padding: 2rem 1rem;
    width: 100%;
  }
  
  .contact-card h3 {
    font-size: 2rem;
  }
  
  .contact-card p {
    font-size: 1.1rem;
  }
  
  .contact-link {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    width: 140px;
    margin-top: 1rem;
  }
  
  .contact-text {
    margin-right: 1.5rem;
  }
}


@media (max-width: 600px) {
  header {
    font-size: 1.3rem;
    gap: 0.5rem;
  }
  nav {
    gap: 1rem;
  }
  
  .about {
    padding: 1rem 1rem;
    margin-bottom: -1rem;
  }
  
  /* Extra small screen adjustments */
  .info-section {
    padding: 1rem 1rem;
    margin-top: -0.5rem;
  }
  
  .tabbed-features {
    padding: 1.5rem 0.5rem;
    margin-top: 1rem;
  }
  
  .tab-container {
    max-width: 280px;
    margin: 0 auto 1.5rem auto;
  }
  
  .tab-button {
    min-width: 120px;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .contact-section {
    padding: 1.5rem 0.5rem;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .contact-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    width: 90%;
    max-width: 400px;
  }
  
  .contact-card h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .contact-card p {
    font-size: 1rem;
    text-align: center;
  }
  
  .contact-link {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
  
  .contact-text {
    margin-right: 0;
  }
}









