@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap');

:root {
  --reseller-accent: #f39223;
  --reseller-accent-dark: #d97d13;
  --reseller-text: #3f3f3c;
  --reseller-muted: #6f6f69;
  --reseller-bg: #f6f3ee;
  --reseller-surface: #ffffff;
  --reseller-border: #e7ded1;
  --reseller-dark: #575755;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--reseller-text);
  background: var(--reseller-bg);
  font: 16px/1.6 "Montserrat", Arial, sans-serif;
}

a {
  color: inherit;
}

.page-wrapper {
  min-height: 100vh;
}

.main-content {
  overflow-x: hidden;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(87, 87, 85, 0.1);
  backdrop-filter: blur(10px);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.navigation-button {
  display: none;
}

.logo {
  color: var(--reseller-accent);
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.navigation-wrapper {
  flex: 1;
}

.portal-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-link {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--reseller-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: rgba(243, 146, 35, 0.08);
}

.portal-link:hover,
.portal-link:focus {
  color: var(--reseller-accent);
  text-decoration: none;
  background: rgba(243, 146, 35, 0.14);
}

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

.navigation > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.navigation > ul > li {
  position: relative;
}

.navigation a {
  display: block;
  padding: 12px 14px;
  color: var(--reseller-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.navigation > ul > li > a:hover,
.navigation > ul > li:hover > a {
  color: var(--reseller-accent);
}

.navigation li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding: 10px 0;
  background: var(--reseller-surface);
  border: 1px solid rgba(87, 87, 85, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.navigation li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navigation li ul a {
  padding: 10px 18px;
  font-size: 13px;
}

.navigation li ul a:hover {
  background: #fff5e9;
  color: var(--reseller-accent);
}

.page-container.feature.details.bg-img {
  position: relative;
  padding: 100px 0 84px;
  background-size: cover !important;
}

.page-container.feature.details.bg-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63, 63, 60, 0.85), rgba(243, 146, 35, 0.7));
}

.page-container.feature.details.bg-img .container {
  position: relative;
  z-index: 1;
}

.feature-header {
  color: #fff;
}

.feature-header-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
}

.page-container.feature.fluid {
  padding: 0;
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.feature-fluid-elem-holder {
  padding: 56px 48px;
}

.content-holder {
  background: transparent;
}

.text-grey {
  color: var(--reseller-muted);
}

.feature-elem-content {
  max-width: 720px;
}

.reseller-summary-card {
  max-width: 520px;
  margin-left: auto;
  padding: 32px;
  color: var(--reseller-text);
  background: linear-gradient(180deg, #fffdf9 0%, #fff3e3 100%);
  border: 1px solid rgba(243, 146, 35, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 40px rgba(87, 87, 85, 0.12);
}

.reseller-summary-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--reseller-text);
  font-size: 28px;
  font-weight: 600;
}

.reseller-summary-card p {
  margin-bottom: 0;
}

.reseller-summary-list {
  padding-left: 18px;
  margin: 18px 0 0;
}

.reseller-summary-list li {
  margin-bottom: 10px;
}

form .row {
  margin-left: -10px;
  margin-right: -10px;
}

form [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  color: var(--reseller-text);
  background: #fff;
  border: 1px solid var(--reseller-border);
  border-radius: 12px;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(243, 146, 35, 0.65);
  box-shadow: 0 0 0 4px rgba(243, 146, 35, 0.15);
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--reseller-accent) 50%), linear-gradient(135deg, var(--reseller-accent) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.btn {
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-splicecom {
  color: #fff;
  background: var(--reseller-accent);
  border-color: var(--reseller-accent);
  box-shadow: 0 14px 30px rgba(243, 146, 35, 0.24);
}

.btn-splicecom:hover,
.btn-splicecom:focus {
  color: #fff;
  background: var(--reseller-accent-dark);
  border-color: var(--reseller-accent-dark);
}

.btn-splicecom-grey {
  color: var(--reseller-text);
  background: #fff;
  border: 1px solid var(--reseller-border);
}

.btn-splicecom-grey:hover,
.btn-splicecom-grey:focus {
  color: var(--reseller-text);
  border-color: var(--reseller-accent);
  background: #fff7ef;
}

.feature-footer-btn {
  min-width: 150px;
  margin-bottom: 10px;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.pull-right {
  margin-left: auto;
}

.bg-light-grey {
  background: #f7f4ef;
}

.main-footer {
  color: #fff;
}

.main-footer-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.main-footer-block {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 24px;
}

.main-footer-block-title {
  margin-top: 0;
  letter-spacing: 0.08em;
}

.main-footer-block-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-footer-block-list-item {
  margin-bottom: 8px;
}

.main-footer-block-list-item-link,
.main-footer a {
  text-decoration: none;
}

.main-footer a:hover {
  text-decoration: underline;
}

.main-footer-addon {
  padding: 28px 0;
}

.copyrights p {
  margin-bottom: 10px;
}

.simple-footer {
  padding-top: 36px;
  padding-bottom: 36px;
}

.simple-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}

.simple-footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.simple-footer-links a:hover {
  text-decoration: underline;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.alert {
  border-radius: 12px;
}

@media (max-width: 991px) {
  .main-header .container {
    display: block;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .logo {
    display: inline-block;
    margin-bottom: 14px;
  }

  .portal-actions {
    justify-content: flex-start;
  }

  .navigation > ul {
    justify-content: flex-start;
  }

  .navigation li ul {
    position: static;
    min-width: 100%;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .feature-fluid-elem-holder {
    padding: 40px 26px;
  }

  .feature-header-title {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .page-container.feature.details.bg-img {
    padding: 74px 0 58px;
  }

  .feature-header-title {
    font-size: 28px;
  }

  .feature-fluid-elem-holder {
    padding: 32px 18px;
  }

  .reseller-summary-card {
    margin-left: 0;
    padding: 24px;
  }

  .feature-row {
    display: block;
  }

  .feature-footer-btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }

  .main-footer-row {
    display: block;
  }
}

