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

body {
  font-family: 'Inter', sans-serif;
  background: #F9FAFB;
  color: #111827;
}

/* CONTAINER */
.container {
  max-width: 1216px;
  width: 100%;
  margin: 0 auto;
}

section {
  background: #ffffff;
  padding: 0 1rem;
}

/* HEADER */
header {
  background: #F9FAFB;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo {
  font-weight: 600;
  font-size: 18px;
}

.logo a {
  text-decoration: none;
  color: #000000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

.btn-primary {
  background: #1246BA;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 1px 2px #1018280A;
}

.btn-primary:hover {
  background: #1e40af;
}

/* HERO SECTION */
.hero {
  padding: 80px 0;
  background-color: #fff;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-btn-wrapper {
  margin-top: 3rem;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  background: #F1F5FE;
  color: #1246BA;
  box-shadow: 0 15px 30px #1018280F;
  border-radius: 10px;
  border: 1px solid #D5E1FB;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-image img {
  width: 100%;
  border-radius: 14px;
  filter: drop-shadow(0 8px 24px -3px #1018281A); 
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

  header {
    padding: 16px;
  }
  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 60px 16px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
}

/* TRUST SECTION */
.trust-section {
  padding: 100px 0;
  background: #f3f4f6;
}

.trust-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}

.trust-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.trust-content p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 570px;
}

/* STAT CARDS */
.trust-stats {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F1F5FE;
  padding: 18px 22px;
  height: 96px;
  border-radius: 12px;
  filter: drop-shadow(0px 9px 22.5px rgba(0, 0, 0, 0.06));
  filter: drop-shadow(0px 9px 22.5px rgba(0, 0, 0, 0.06));
}

.stat-card.is-first {
  max-width: 422px;
}

.stat-card.is-second {
  max-width: 435px;
  margin-left: auto;
}

.stat-card.is-third {
  max-width: 485px;
}

.stat-card p {
  font-size: 24px;
  color: #000000;
  line-height: 1.5;
}

.stat-card strong {
  color: #1246BA;
  font-weight: 600;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon img {
  width: 48px;
  height: 48px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .trust-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 60px 16px;
  }

  .trust-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .trust-content h2 {
    font-size: 32px;
  }

  .trust-content p {
    font-size: 17px;
  }

  .stat-card {
    padding: 16px 18px;
  }
}

@media (max-width: 480px) {
  .trust-content h2 {
    font-size: 28px;
  }

  .stat-card p {
    font-size: 15px;
  }
}

/* SOLUTIONS SECTION */
.solutions-section {
  padding: 100px 0;
  background: #ffff;
}

.solutions-header {
  text-align: center;
  margin-bottom: 48px;
}

.solutions-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.solution-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 14px;
  box-shadow: 0 2px 6px #1018280F;
  transition: 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.solution-icon {
  width: 50px;
  height: 50px;
  background: #F1F5FE;
  color: #1246BA;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111827;
}

.solution-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .solutions-header h2 {
    font-size: 34px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 60px 16px;
  }

  .solutions-header {
    margin-bottom: 50px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .solutions-header h2 {
    font-size: 26px;
  }
}

/* PROCESS SECTION */
.process-section {
  padding: 100px 0;
  background: #F9FAFB;
}

.process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

/* LEFT INTRO */
.process-intro h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111827;
}

.process-intro p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 480px;
}

/* STEPS */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.process-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  min-width: 34px;
  height: 34px;
  background: #e0e7ff;
  color: #1246BA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.step-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 520px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .process-intro h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 60px 16px;
  }

  .process-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-intro h2 {
    font-size: 30px;
  }

  .process-intro p {
    font-size: 17px;
  }

  .step-content h3 {
    font-size: 17px;
  }

  .step-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .process-intro h2 {
    font-size: 26px;
  }
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: #fff;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT CONTENT */
.cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111827;
  max-width: 520px;
}

.cta-content p {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}

.cta-btn {
  display: inline-block;
  background: #1246BA;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

/* IMAGE */
.cta-image img {
  width: 100%;
  border-radius: 14px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  display: block;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .cta-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 16px;
  }

  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 26px;
  }
}

/* NEWSLETTER SECTION */
.newsletter-section {
  padding: 100px 0 60px;
  background: #fff;
}

.newsletter-card {
  max-width: 1280px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  text-align: center;
}

.newsletter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
  width: 48px;
  height: 48px;
  background: #F1F5FE;
}

.newsletter-text-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #111827;
}

.newsletter-card p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  width: 280px;
  font-family: inherit;
}

.newsletter-card small {
  font-size: 13px;
  color: #9ca3af;
}

.newsletter-card a {
  color: #6B7280;
  text-decoration: underline;
}

/* FOOTER */
.footer-left strong {
  color: #000000;
}
.site-footer {
  padding: 40px 0;
  background: #f3f4f6;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-center {
  text-align: center;
}

.footer-center p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 14px;
  color: #374151;
  text-decoration: none;
}

.footer-links span {
  margin: 0 8px;
  color: #9ca3af;
}

.linkedin {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #111827;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .newsletter-card {
    padding: 40px 25px;
  }

  .newsletter-card h2 {
    font-size: 26px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 15px;
  }
}

/* contact page */

/* ===== Contact Section ===== */
.contact-section{
    background: #fff;
    padding:80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container{
    max-width: 1216px;
    margin: 0 auto;
    width: 100%;
    display:flex;
    justify-content:space-between;
    gap:132px;
}

.contact-left{
  max-width: 384px;
  width: 100%;
}

.contact-left h1{
  font-size:42px;
  margin-bottom:20px;
}

.contact-left p{
  color:#555;
  max-width:420px;
  line-height:1.6;
}

/* ===== Form ===== */
form {
  font-family: 'Inter', sans-serif;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius:12px;

}

.form-row{
  display:flex;
  gap:20px;
}

.form-group{
  flex:1;
  display:flex;
  flex-direction:column;
}

label{
  font-size:14px;
  margin-bottom:6px;
  font-weight:500;
}

input, select{
  padding:12px;
  border: none;
  border-bottom:1px solid #E5E7EB;
  font-size:14px;
  outline:none;
  transition:0.2s;
}

textarea {
  padding:12px;
  border-radius: 8px;
  border:1px solid #E5E7EB;
  font-size:14px;
  outline:none;
  transition:0.2s;
  font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus{
  border-color:#1f4ed8;
}

textarea{
  resize:none;
  min-height:110px;
}

.phone-wrapper{
  display:flex;
  gap:10px;
}

.country-select{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px;
  border:1px solid #ddd;
  border-radius:8px;
  cursor:pointer;
}

.country-select img{
  width:20px;
  height:14px;
  object-fit:cover;
}

.submit-btn{
  background:#1246BA;
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:8px;
  cursor:pointer;
  max-width: 144px;
  width: 100%;
  height: 36px;
  font-weight:500;
}

/* ===== Footer ===== */
.footer{
  padding:30px 5%;
  text-align:center;
  font-size:14px;
  color:#666;
}

.btn-policy-text-wrapper {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 24px;
}

.btn-policy-text-wrapper p {
    font-size: 12px;
    color: #6B7280;
}

.btn-policy-text-wrapper a{
  color: #6B7280;
}

.iti__selected-country-primary {
  background: #f3f4f6;
  padding: 8px 8px 8px 12px;
  margin-right: 5px;
  border: 1px solid #E5E7EB;
}

.iti__tel-input {
  width: 100%;
}

.iti__selected-country {
  padding-right: 12px;
}

/* ===== Responsive ===== */
@media(max-width:992px){
  .contact-container{
    flex-direction:column;
    padding: 16px;
    gap: 60px
  }

  .form-row{
    flex-direction:column;
  }

  .contact-left h1{
    font-size:34px;
  }

  .contact-form {
    padding: 0;
  }

  .btn-policy-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
