.elementor-346 .elementor-element.elementor-element-dbf3628{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-346 .elementor-element.elementor-element-dbf3628:not(.elementor-motion-effects-element-type-background), .elementor-346 .elementor-element.elementor-element-dbf3628 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#010E2E;}.elementor-346 .elementor-element.elementor-element-0f581d3{--display:flex;}.elementor-346 .elementor-element.elementor-element-0f581d3:not(.elementor-motion-effects-element-type-background), .elementor-346 .elementor-element.elementor-element-0f581d3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#010E2E;}.elementor-346 .elementor-element.elementor-element-8b62fc5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-346 .elementor-element.elementor-element-8b62fc5:not(.elementor-motion-effects-element-type-background), .elementor-346 .elementor-element.elementor-element-8b62fc5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#010E2E;}.elementor-346 .elementor-element.elementor-element-89177bf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-346 .elementor-element.elementor-element-89177bf:not(.elementor-motion-effects-element-type-background), .elementor-346 .elementor-element.elementor-element-89177bf > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#010E2E;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-86d46f2 *//* ===== HERO SECTION ===== */
.trial-hero {
  background-color: #010E2E;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* ===== CONTENT BOX ===== */
.trial-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  color: #ffffff;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );

  padding: 80px 60px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255,255,255,0.08);

  position: relative;
  animation: fadeUp 1.1s ease forwards;
}

/* ===== SOFT GLOW ===== */
.trial-content::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: radial-gradient(
    circle at top,
    rgba(0,125,255,0.35),
    transparent 65%
  );
  z-index: -1;
}

/* ===== TITLE ===== */
.trial-content h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
}

.keyword {
  color: #007DFF;
}

.white-text {
  color: #ffffff;
}

/* ===== DESCRIPTION ===== */
.trial-description {
  font-size: 19px;
  line-height: 1.8;
  color: #dbe3ff;
  max-width: 900px;
  margin: 0 auto 45px;
}

/* ===== FEATURES ===== */
.trial-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
}

.trial-features span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  animation: float 4s ease-in-out infinite;
}

/* ===== CTA BUTTON ===== */
.trial-cta {
  display: flex;
  justify-content: center;
}

.trial-btn {
  display: inline-block;
  padding: 18px 42px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  border-radius: 16px;

  background: linear-gradient(135deg, #007DFF, #00B4FF);

  box-shadow:
    0 18px 45px rgba(0,125,255,0.5),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: all 0.3s ease;
}

.trial-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 55px rgba(0,125,255,0.65),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .trial-hero {
    padding: 80px 15px;
  }

  .trial-content {
    padding: 50px 22px;
    border-radius: 20px;
  }

  .trial-content h1 {
    font-size: 32px;
  }

  .trial-description {
    font-size: 16px;
  }

  .trial-features span {
    font-size: 14px;
    padding: 12px 20px;
  }

  /* BUTTON FIX ON MOBILE */
  .trial-btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 14px;
    transform: none;
  }

  .trial-btn:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c27b1a5 *//* ===========================
   SMARTONE CONTACT SECTION
=========================== */

.smartone-contact-section {
  background: #010E2E;
  padding: 40px 20px;
  color: #ffffff;
}

.smartone-contact-container {
  max-width: 1200px;
  margin: auto;
}

/* ===========================
   HEADER
=========================== */

.smartone-contact-header {
  text-align: center;
  margin-bottom: 70px;
}

.smartone-contact-header h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #ffffff;
}

.focus-keyword {
  color: #007DFF;
}

.smartone-contact-header p {
  font-size: 18px;
  color: #dbe3ff;
  line-height: 1.7;
  max-width: 800px;
  margin: auto;
}

/* ===========================
   GRID
=========================== */

.smartone-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ===========================
   CARD
=========================== */

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 45px 35px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* ===========================
   ICON
=========================== */

.contact-icon {
  width: 72px;
  margin-bottom: 20px;
}

/* ===========================
   TITLES (FIXED TO WHITE)
=========================== */

.contact-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff !important;
}

/* ===========================
   TEXT
=========================== */

.contact-card p {
  font-size: 16px;
  color: #dbe3ff;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ===========================
   BUTTON
=========================== */

.contact-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn {
  background: #25D366;
  color: #ffffff;
}

.whatsapp-btn:hover {
  background: #1ebe5b;
}

/* ===========================
   FORM (WPForms FIX)
=========================== */

.contact-form {
  text-align: left;
}

/* Labels */
.contact-card .wpforms-field-label {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}

/* Required star */
.contact-card .wpforms-required-label {
  color: #ff4d4d !important;
}

/* Inputs / Select / Textarea */
.contact-card input,
.contact-card select,
.contact-card textarea {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 14px !important;
  font-size: 15px !important;
}

/* Placeholder */
.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #cfd8ff !important;
}

/* Focus */
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  outline: none !important;
  border-color: #007DFF !important;
  box-shadow: 0 0 0 2px rgba(0,125,255,0.25);
}

/* Select dropdown options */
.contact-card select option {
  color: #000000;
}

/* Submit button */
.contact-card .wpforms-submit {
  width: 100% !important;
  background: linear-gradient(135deg, #007DFF, #00B4FF) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 14px !important;
  border-radius: 10px !important;
  border: none !important;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 900px) {
  .smartone-contact-grid {
    grid-template-columns: 1fr;
  }

  .smartone-contact-header h2 {
    font-size: 34px;
  }
}/* End custom CSS */