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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1E2027;
    margin: 0;
    padding: 0;
}

/* Counter animation */
.count-updated {
  animation: countBounce 0.5s ease;
}

@keyframes countBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); color: var(--blue); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.suggestion-tag {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.suggestion-tag:hover {
  transform: translateY(-2px);
  background: rgba(124, 58, 237, 0.1);
}

/* Mobile-specific fixes */
@media (max-width: 480px) {
  /* Fix form overflow */
  .modal {
    padding: 15px;
    width: 95vw;
  }
  
  /* Larger tap targets */
  .search-button, .submit-btn {
    min-width: 48px;
    min-height: 48px;
  }
  
  /* Better suggestion tags */
  .suggestions-grid {
    grid-template-columns: 1fr;
  }
  
  /* Platform logo sizing */
  .platform-logo {
    width: 120px;
    padding: 15px;
  }
}
/* Header */
.header {
    background: transparent;
    padding: 16px 0;
/*            position: fixed;*/
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-button {
    background: linear-gradient(86deg, #09CC85 -0.9%, #0C24D6 88.77%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

/* Global Background */
body {
    background: #F5F0FF url('../icons/BG.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

body::before {
/*    content: '';*/
    /*position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(12, 36, 214, 0.05) 100%);
    z-index: -1;
    pointer-events: none;*/

   /* position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;*/
    
/*    backdrop-filter: blur(100px);*/
    /*display: block;
    justify-content: center;
    align-items: center;
    z-index: -1;
*/
   
}

.bouncing-object {
  position: fixed;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  z-index: -1;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .bouncing-object {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    opacity: 0.3;
  }
}


.bouncing-object img{
    width: 100%; /* ukuran gambar */
  height: 100%;
}



.grain{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(100px);
    display: block;
    justify-content: center;
    align-items: center;
    z-index: -1;

    background-image: url(../icons/grain.png);
    background-size:100px 100px;
    background-repeat: repeat;
    background-blend-mode: overlay;
    background-position: left top;
    mix-blend-mode: overlay;
}


/* Hero Section */
.hero {
    background: transparent;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    background: linear-gradient(90deg, #7C3AED 13.51%, #0C24D6 88.75%);
    -webkit-background-clip: text;
/*    -webkit-text-fill-color: transparent;*/
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: #4F495E;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    max-width: 750px;
    margin: 0 auto 60px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 40px 40px 32px;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    font-size: 15px;
    outline: none;
    background: white;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.16);
    color: #1E2027;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    min-height: 140px;
    max-height: 180px;
    resize: none;
    line-height: 1.5;
    overflow-y: auto;
    vertical-align: top;
}

.search-input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.search-input:focus {
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1), 0px 4px 14px rgba(0, 0, 0, 0.06), 0px 14px 34px rgba(0, 0, 0, 0.16);
}

.search-button {
       position: absolute;
    right: 10px;
    bottom: 10px;
    width: 35px;
    height: 35px;
    background: #06AE71;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
/*    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);*/
    transition: all 0.3s ease;
    font-size: 20px;
    color: #6B7280;
}

.search-button:hover {
    background: #10df94;
    border-color: #D1D5DB;
    color: #374151;
}

.suggestions {
    margin-top: 40px;
    text-align: center;
}

.suggestions-title {
    font-size: 20px;
    font-weight: 500;
    color: #1E2027;
    margin-bottom: 20px !important; 
}

.suggestions-grid {
/*    display: flex;
    flex-direction: column;
    gap: 12px;*/
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.suggestions-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-tag {
/*    background: rgba(255, 255, 255, 0.5);*/
background: #fff;
    padding: 8px 16px;
    border-radius: 32px;
    box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    color: #09CC85;
        display: inline-block;
            margin: 0px 0px;

            white-space: nowrap;         /* Teks dalam satu baris */
    overflow: hidden;            /* Potong teks yang keluar */
    text-overflow: ellipsis;     /* Tampilkan "..." di akhir */
    max-width: 100%;
}

.suggestion-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px rgba(12, 12, 13, 0.15);
}

/* Platform Section */
.platform {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 210px;
    align-items: center;
}

.platform-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    background: linear-gradient(90deg, #7C3AED 0.81%, #0C24D6 100%);
    -webkit-background-clip: text;
/*    -webkit-text-fill-color: transparent;*/
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.3;
}

.platform-text p {
    font-size: 20px;
    color: #4F495E;
    margin-bottom: 30px;
    line-height: 1.6;
}

.zero-setup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(90deg, #7C3AED 0.81%, #0C24D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.zero-setup::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url('../icons/icon-magic.svg') no-repeat center center;
    background-size: contain;
    flex-shrink: 0;
}

.platform-quote {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
/*            border-left: 4px solid #09CC85;*/
    backdrop-filter: blur(10px);
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

.platform-quote p {
    color: #09CC85;
    margin: 0;
    font-weight: 500;
}
.platform-quote img {
    margin-right: 20px;
}
.platform-logos {
    display: block;
        max-width: 600px;
}

.platform-logo:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
}

.platform-logo:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2;
}

.platform-logo {
    background: rgba(255, 255, 255, 0.5);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    width: 150px;
    margin: 10px;
}

.platform-logo:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.platform-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* Services Section */
.services {
    background: rgb(38 28 255 / 26%);
    padding: 140px 0;
    position: relative;
    z-index: 1;
    margin: 48px 12px;
    border-radius: 40px;
}

.services-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    color: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.services-header p {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.services-badge {
    display: inline-block;
    background: #1E2027;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin: 40px 0 0px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.service-card {
    background: #0C24D6;
    padding: 100px 30px 40px 100px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-main {
    flex: 1;
}

.service-card-icon {
    width: 32px;
    height: 32px;
    background: url('../icons/lg-white-icon.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.8;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff ;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    color: #FFFFFF;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-weight: 600;
}

.service-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain !important;
    background: url(../icons/icon-check.svg) no-repeat center center;
    position: absolute;
    left: 0;
    color: #09CC85;
    font-weight: bold;
    font-size: 18px;
}

.service-cta {
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 20px;
    padding-top: 20px;
/*            border-top: 1px solid rgba(9, 204, 133, 0.2);*/
}

/* Process Section */
.process {
    background: transparent;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}



.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.process-title-main {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #1E2027;
}

.process-title-secondary {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #1E2027;
    margin-bottom: 20px;
    line-height: 1.3;
}

.process-description {
    font-size: 20px;
    color: #1E2027;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.process-step {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    padding: 70px 40px 40px 100px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.06), 0px 14px 34px 0px rgba(0, 0, 0, 0.16);
}

.process-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.process-step-main {
    flex: 1;
}

.step-number {
    font-family: 'Bebas Neue';
    font-size: 64px;
    font-weight: 400;
    background: linear-gradient(90deg, #7C3AED 0.81%, #0C24D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.step-badge {
    background: linear-gradient(90deg, #7C3AED 0.81%, #0C24D6 100%);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    display: inline-block;
    margin-bottom: 30px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1E2027;
    margin-bottom: 15px;
}

.step-description {
    color: #1E2027;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    margin-bottom: 25px;
}

.step-features li {
    color: #1E2027;
    margin-bottom: 8px;
    padding-left: 30px;
    position: relative;
    font-weight: 600;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #09CC85;
    font-weight: bold;
}

.step-features.quotes li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain !important;
    background: url(../icons/icon-quotes-dark.svg) no-repeat center center;
    position: absolute;
    left: 0;
    color: #09CC85;
    font-weight: bold;
}

.blue {
    color: #7739EC;
  }
  .black {
    color: #1E2027 !important;
  }
.green {
    color: #0ACA86;
  }

.step-features.upload li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain !important;
    background: url(../icons/icon-upload.svg) no-repeat center center;
    position: absolute;
    left: 0;
    color: #09CC85;
    font-weight: bold;
}

.step-features.check li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain !important;
    background: url(../icons/icon-check-dark.svg) no-repeat center center;
    position: absolute;
    left: 0;
    color: #09CC85;
    font-weight: bold;
}

.step-cta {
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    background: #1E2027;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 20px;
    padding-top: 20px;
/*    border-top: 1px solid rgba(124, 58, 237, 0.1);*/
}

/* CTA Section */
.cta {
    background: transparent;
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #7C3AED;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    color: #1E2027;
    margin-bottom: 40px;
}

.cta-stats {
    margin-bottom: 40px;
}

.stat-number {
    font-family: 'Bebas Neue';
    font-size: clamp(72px, 8vw, 96px);
    font-weight: 400;
    color: #7C3AED;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    color: #1E2027;
}

/* Footer */
.footer {
    background: #1E2027;
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer-cta-banner {
    background: linear-gradient(86deg, #09CC85 -0.9%, #0C24D6 88.77%);
    border-radius: 24px;
    padding: 32px 40px;
    margin: -160px auto 60px;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.footer-cta-image {
    position: absolute;
        top: 0;
    right: 180px;
    width: 150px;
    opacity: 0.7; /* transparansi tambahan jika perlu */
    pointer-events: none; /* biar tidak ganggu klik */
}

.footer-cta-content{
    display: flex;
}
.footer-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    width: 24%;
    margin-right: 60px;
}

.footer-cta-subtitle {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-cta-features {
    list-style: none;
    margin: 0;
}

.footer-cta-features li {
    margin-bottom: 6px;
    padding-left: 24px;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.footer-cta-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.footer-cta-button {
    background: white;
    color: #1E2027;
    border: none;
    padding: 14px 28px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: fit-content;
        margin: auto 0 auto auto;
    display: block;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-brand .footer-social img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0px;
}


.footer-address {
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: #2D303F;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 14px;
    line-height: 1.4;
}

.footer-column a:hover {
    color: #7C3AED;
}

.footer-bottom {
/*    border-top: 1px solid #374151;*/
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom-links a:hover {
    color: #7C3AED;
}

.footer-bottom p {
    color: #FFFFFF;
    margin: 0;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

/* Scrollbar Flat Style */
.modal-content {
  overflow-y: auto; /* aktifkan scroll jika tinggi konten melebihi modal */
  scrollbar-width: none;              /* Firefox */
  scrollbar-color: #ccc transparent;  /* Firefox */
  display: inline-grid;
}

.modal-content::-webkit-scrollbar {
    /*  width: 6px;             */
    display: none;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent; /* background track transparan */
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #ccc;    /* warna scroll thumb */
  border-radius: 4px;        /* sudut bulat */
  border: none;

}

.sticky-header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 10;
  height: 60px;
/*  border-bottom: 1px solid #eee; /* opsional: biar terlihat seperti header */*/
}

.modal-content {
/*  max-height: 80vh;*/
height: 100%;
  overflow-y: auto;
  position: relative;
}
.modal {
    background: white;
    border-radius: 24px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    height: 80%;
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.3);
}
#waitlistForm{
/*    padding-top: 20px;*/
}
.modal-content {
    transition: all 0.5s ease;
}

.modal-content.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.modal-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.modal-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 100%;
}

.modal-step.active {
    display: block;
    opacity: 1;
    height: 100%;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 12px;
    background: #F3F4F6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6B7280;
    z-index: 20;
}

.modal-close:hover {
    background: #E5E7EB;
}

.modal h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1E2027;
    margin-bottom: 12px;
    line-height: 1.3;
}

.modal p {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 12px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #1E2027;
    margin-bottom: 4px;
    font-size: 13px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.dropdown {
    position: relative;
}

.dropdown-trigger {
    width: 100%;
    padding: 10px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #1E2027;
}

.dropdown-trigger.placeholder {
    color: #9CA3AF;
}

.dropdown-trigger:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.dropdown-arrow {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
    margin-top: 4px;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-option {
    padding: 8px 16px;
    cursor: pointer;
    font-size: 12px;
    color: #1E2027;
    border-bottom: 1px solid #F3F4F6;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: #F9FAFB;
}

.dropdown-option.selected {
    background: #F3F4F6;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #7C3AED 0.81%, #0C24D6 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

/* Thank You Modal */
.thank-you-modal {
    text-align: center;
}

.thank-you-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #7C3AED 0.81%, #0C24D6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.thank-you-logo img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.thank-you-title {
    font-size: 28px;
    font-weight: 700;
    color: #1E2027;
    margin-bottom: 16px;
    line-height: 1.3;
}

.thank-you-title .highlight {
    color: #7C3AED;
}

.thank-you-subtitle {
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.5;
}

.social-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.social-card {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
}

.social-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1E2027;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-card p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.4;
}

.social-btn {
    background: #7C3AED;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.social-btn:hover {
    background: #6D28D9;
    transform: translateY(-1px);
}

.okay-btn {
    width: 100%;
    background: linear-gradient(90deg, #7C3AED 0.81%, #0C24D6 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.okay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.conhead{
   display: flex;
}
.footer-cta-content .cont{
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platform-content{
            gap: 40px;
    }
}


@media (max-width: 768px) {
    body {
/*        background-attachment: scroll;*/
    }

    .container {
        padding: 0 20px;
    }

    .platform-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: unset;
/*        margin: 0 auto;*/
    }

    .platform-logo:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: 3;
    }

   /* .services-grid {
        grid-template-columns: 1fr;
    }*/

    .process-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .process-step {
        min-height: auto;
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
/*        grid-template-columns: 1fr;*/
        gap: 20px;
    }

    .footer-cta-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px;
        margin: -180px auto 40px;
        gap: 20px;
    }

    .service-card {
        min-height: auto;
        padding: 20px;
    }

    .footer-cta-content h3 {
        font-size: 24px;
        margin-bottom: 8px;
        width: 50%;
        text-align: left;
    }

    .footer-cta-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
        text-align: left;
    }
    .footer-cta-image{
        top: unset;
        bottom: 0;
    right: 0;
    }
    .footer-cta-features li {
        font-size: 13px;
        margin-bottom: 4px;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: row;
        text-align: center;
    }

    .suggestions-row {
        flex-direction: column;
        align-items: center;
        
        display: -webkit-inline-box;
    }

    .suggestion-tag {
            font-size: 12px;
        max-width: 350px;
        text-align: center;

                grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .search-container {
        max-width: 95%;
    }

    .modal {
        padding: 30px 20px;
        margin: 20px;
    }

    .modal h2 {
        font-size: 20px;
    }

    .thank-you-title {
        font-size: 24px;
    }

    .social-cards {
        grid-template-columns: 1fr;
    }
    .footer-cta-button {
            max-width: 200px;
            margin: 0;
    }

    .footer-cta-content{
        display: block;
    }

}

@media (max-width: 425px) {
    .footer-bottom{
        flex-direction: column;
        text-align: center;
    }
    .footer-links{
        grid-template-columns:unset;
    }
    .footer-cta-content .cont{
        display: block;
    }
    .conhead{
        display: block;
    }
    .footer-cta-content .cont{
        margin: 20px 0;
    }
    .footer-cta-banner{
        margin: -190px auto 40px;
    }
}
@media (max-width: 320px) {
    .suggestion-tag{
        width: 100%;
    }
}
