@charset "UTF-8";
/* CSS Document */
:root {
  --primary-blue: #1f4d97;
  --secondary-blue: #2fc6ff;
  --dark-bg: #111827;
  --light-bg: #f9fafb;
  --white: #ffffff;
  --text-dark: #111827;
  --text-gray: #4b5563;
  --text-light-gray: #666666;
  --border-color: #e5e7eb;
  --font-main: 'Figtree', sans-serif;
  --font-display: 'Crimson Pro', serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

.page-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary-blue);
  border: 2px solid var(--secondary-blue);
}

.btn-secondary:hover {
  background-color: var(--secondary-blue);
  color: var(--white);
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #0284c7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    cursor: pointer;
}

.video-container {

position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio → 9 / 16 = 0.5625 */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* optional */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* optional */
}
.video-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .page-wrapper {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-wrapper {
    padding: 20px 15px;
    gap: 30px;
  }
}


.main{
    display: flex;
    flex-direction: column;
    gap:2rem;
    width:100%;
    margin:0 auto;
    padding:60px 0;
    max-width:1280px;  
}
.hero-section,.about-section,.features-section,.teams-section,.alert-section,.testimonials-section.form-section,.faq-section,.cta-section,.site-footer
{
    width:100%;
}


/* CSS from section:header */
.site-header {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 24px 30px;
  position: sticky;
  top: 20px;
  z-index: 100;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 29px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.main-nav ul {
  display: flex;
  gap: 27px;
}
.main-nav a {
  color: var(--text-gray);
  font-size: 16px;
  font-weight: 500;
}
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

/* CSS from section:hero */
.hero-section {
  background-image: url("../img/landing-page/bg-hero-section.png");
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  padding: 40px;
  color: var(--white);

}
.hero-container {
  display: flex;
  align-items: center;
  gap: 48px;
  padding:10% 24px;
}
.hero-video-wrapper {
  flex: 1;
  padding: 8px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
}
.hero-video-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--dark-bg);
}
.hero-video-thumb {
  width: 100%;
  display: block;
  aspect-ratio: 576 / 320;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
}
.hero-content h1 span {
  color: var(--secondary-blue);
}
.hero-content p {
  font-size: 24px;
  line-height: 1.375;
  max-width: 512px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}
.btn-large {
  padding: 16px 30px;
  font-size: 18px;
}
.btn-icon {
  margin-right: 8px;
}
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 500px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* CSS from section:about */
.about-section {
  background-color: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1), 0px 8px 10px 0px rgba(0, 0, 0, 0.1);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-text h2 {
  font-family: var(--font-display);
  color: var(--primary-blue);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
}
.about-text p {
  font-size: 16px;
  line-height: 1.625;
  color: #333333;
}
.about-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* CSS from section:features */
.features-section {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 30px;
}
.features-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features-title {
  font-family: var(--font-display);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background-color: var(--white);
  border: 1px solid #b1c8e2;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-icon-wrapper.color-1 { background-color: #dbeafe; }
.feature-icon-wrapper.color-2 { background-color: #dcfce7; }
.feature-icon-wrapper.color-3 { background-color: #f3e8ff; }
.feature-icon-wrapper.color-4 { background-color: #ffedd5; }
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}
.feature-card p {
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-light-gray);
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-title {
    font-size: 32px;
  }
}

/* CSS from section:teams */
.teams-section {
  padding: 40px;
  border-radius: 30px;
}
.teams-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
}
.teams-title {
  font-family: var(--font-display);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}
.teams-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.team-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 257px;
}
.team-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-icon-wrapper.color-1 { background-color: #dbeafe; }
.team-icon-wrapper.color-2 { background-color: #dcfce7; }
.team-icon-wrapper.color-3 { background-color: #fee2e2; }
.team-item p {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
  color: var(--text-dark);
}
@media (max-width: 768px) {
  .teams-grid {
    flex-direction: column;
  }
  .teams-title {
    font-size: 32px;
  }
  .team-item p {
    font-size: 20px;
  }
}

/* CSS from section:alert */
.alert-section {
  background-color: #fefce8;
  border: 1px solid #fef08a;
  border-radius: 30px;
  padding: 60px 20px;
}
.alert-box {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 19px;
}
.alert-box h3 {
  font-family: var(--font-display);
  color: var(--primary-blue);
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
}
.alert-box h3 img {
  display: inline-block;
  vertical-align: middle;
}
.alert-box p {
  color: #374151;
  font-size: 20px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .alert-box h3 {
    font-size: 32px;
  }
  .alert-box p {
    font-size: 18px;
  }
}

/* CSS from section:testimonials */
.testimonials-section {
  background-color: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1), 0px 8px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonials-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.testimonials-header h4 {
  color: var(--text-light-gray);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.testimonials-header h2 {
  color: var(--text-gray);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}
.testimonials-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
  align-items: center;
}
.testimonial-card {
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 26px;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}
.quote-icon {
  flex-shrink: 0;
  width: 48px;
  height: 41px;
  margin-top: -10px;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-content h5 {
  color: var(--secondary-blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
}
.testimonial-content blockquote, .testimonial-content p {
  font-size: 14px;
  line-height: 1.2;
}
.testimonial-content blockquote {
  font-weight: 500;
  margin-bottom: 10px;
}
.testimonial-content p {
  color: #e5e7eb;
  font-weight: 400;
}
.testimonial-video-wrapper {
  background-color: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
}
.testimonial-video-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--dark-bg);
}
.testimonial-video-thumb {
  width: 100%;
  display: block;
}
.pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: rgba(47, 198, 255, 0.3);
}
.dot.active {
  background-color: var(--secondary-blue);
}
@media (max-width: 1024px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  .testimonial-video-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* CSS from section:form */
.form-section {
  background-color: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1), 0px 8px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.form-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1132px;
}
.form-header h2 {
  font-family: var(--font-display);
  color: var(--primary-blue);
  font-size: 40px;
  font-weight: 700;
}
.form-header p {
  color: var(--text-gray);
  font-size: 20px;
  line-height: 1.4;
}
.trial-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  width: 100%;
}
.upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 34px;
  cursor: pointer;
}
.upload-title {
  color: #374151;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}
.upload-subtitle {
  color: #6b7280;
  font-size: 16px;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-fields input, .form-fields textarea {
  width: 100%;
  padding: 20px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-gray);
}
.form-fields input::placeholder, .form-fields textarea::placeholder {
  color: #adaebc;
}
.form-fields textarea {
  resize: vertical;
}
.btn-submit {
  background-color: var(--secondary-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-submit:hover {
  background-color: #25b4e6;
}
.form-terms {
  color: var(--text-gray);
  font-size: 14px;
}
@media (max-width: 900px) {
  .trial-form {
    grid-template-columns: 1fr;
  }
}

/* CSS from section:faq */
.faq-section {
  background-color: var(--white);
  padding: 40px;
  border-radius: 30px;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-title {
  font-family: var(--font-display);
  color: #183e6d;
  font-size: 36px;
  font-weight: 700;
}
.faq-list {
  background-color: #f9fbff;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #1b263b;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #1b263b;
}
.faq-item .icon-plus { display: block; }
.faq-item .icon-minus { display: none; }
.faq-item[open] .icon-plus { display: none; }
.faq-item[open] .icon-minus { display: block; }

/* CSS from section:cta */
.cta-section {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 30px;
}
.cta-container {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.cta-container h2 {
  font-family: var(--font-display);
  color: var(--primary-blue);
  font-size: 40px;
  font-weight: 700;
}
.cta-container p {
  color: var(--text-gray);
  font-size: 20px;
  line-height: 1.4;
  max-width: 592px;
}
.cta-buttons {
  display: flex;
  gap: 24px;
}
.cta-buttons .btn {
  padding: 16px 30px;
  font-size: 18px;
  gap: 12px;
}
.btn-primary-alt {
  background-color: var(--secondary-blue);
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .cta-buttons {
    flex-direction: column;
  }
}

/* CSS from section:footer */
.site-footer {
  background-color: var(--dark-bg);
  color: #9ca3af;
  padding: 60px 60px 40px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 120px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 17px;
  max-width: 284px;
}
.footer-logo img {
  height: 32px;
}
.footer-info p {
  font-size: 16px;
  line-height: 1.5;
}
.social-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-grow: 1;
  justify-content: space-around;
}
.link-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.link-column h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.link-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.link-column a {
  font-size: 16px;
}
.footer-bottom {
  border-top: 1px solid var(--text-gray);
  padding-top: 20px;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    justify-content: space-between;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 40px 20px;
  }
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}
