
*,
*:before,
*:after {
	box-sizing: border-box;
  font-feature-settings: "kern";
  font-kerning: normal;
  -moz-osx-font-smoothing: grayscale !important;
  -webkit-font-smoothing: antialiased !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove all animations, transitions and scroll-behavior for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --primary-color: #990000;
  --secondary-color: #330000;
  --success-color: #28a745;
  --error-color: #dc3545;
  --text-color: #2c3e50;
  --bg-light: #edf0f4;
  --border-color: #e9ecef;
  --muted: #c0c0c0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  position: relative;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(360deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

sup, sub {
  font-size: calc(0.4em + 4px);
  vertical-align: baseline;
  position: relative;
  top: calc(-0.6 * 0.83 * 2 * (1em - 4px));
  /* Simplified top: calc(-0.83em + 3.32px) */
}

sub {
  top: calc(0.25 * 0.83 * 2 * (1em - 4px));
  /* Simplified top: calc(0.42em - 1.66px) */
}

ol {
  list-style: none;
  counter-reset: counter-function;
}
ol li {
  counter-increment: counter-function;
  margin: 0.25rem;
  text-align: left;
}
ol li::before {
  content: counter(counter-function);
  background: red;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-block;
  line-height: 2rem;
  color: white;
  text-align: center;
  margin-right: 0.5rem;
}

ul {
  padding-left: 1.2rem;
}

ul li {
  text-align: left;
  margin-top:5px;
}

ul li:before {
  content: '-';
  margin-right: 0.4rem;
}

.container {
  display: flex;
  flex-direction: row;
  background: white;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.box {
  display: flex;
  flex-direction: column;

}

.header {
  display:block;
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 4.5rem;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 20px 20px rgba(0, 0, 0, 0.5);
}

.header p {
  color: #fefefe;
  font-size: 1.1rem;
}
.smprint {
  display:flex;
  justify-content:space-between;
  gap:1rem; align-items:center;
  flex-wrap:wrap;
  max-width: 1200px;
  padding:10px;
}

.small {
  font-size:.85rem;
  color:var(--muted);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
}

.required {
  color: var(--error-color);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  background-color: #fafbfc;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.alert {
  padding: 18px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 25px;
  font-weight: 500;
  border-left: 4px solid;
  position: relative;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: var(--success-color);
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border-color: var(--error-color);
}

.contact-info {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.contact-info h3 {
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.contact-info p {
  color: #6c757d;
  margin-bottom: 8px;
  margin-top: 20px;
  font-size: 14px;
  color: #999;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6c757d;
}

.feature-item::before {
  content: '✓';
  color: var(--success-color);
  font-weight: bold;
  margin-right: 8px;
}


.hidemodal {
  display: none;
}

.showmodal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

.modalody {
  display: block;
  position: relative;
  height: 90vh;
  width: 90vw;
  margin: 5vh auto;
  padding: 25px;
  overflow-y: auto;
  text-align: left;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
  background-color: #fff;

}

.showmodal h1 {
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 20px;
}

.showmodal h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 36px;
  margin: 20px 0;
  text-transform: uppercase;
}

.showmodal ol {
  counter-reset: counter-function;
}

.showmodal ol li {
  counter-increment: counter-function;
}

.showmodal ol li::before {
  content: counter(counter-function);
  background: black;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-block;
  line-height: 2rem;
  color: white;
  text-align: center;
  margin-right: 0.5rem;
}

.showmodal ul {

  padding-left: 1.2rem;
}

.showmodal ul li {
  position: relative;
  text-align: left;
  margin: 5px 20px;
}

.showmodal ul li:before {
  content: '';
  display: block;
  position: absolute;
  top: 20%;
  left: -20px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #000;
}


.showmodal .stat-pend {
  font-weight: bold;
  color: brown;
}

.showmodal .stat-ok {
  font-weight: bold;
  color: green;
}

/*.showmodal h2:before {
  content: '';
  display: block;
  position: absolute;
  top: 15%;
  left: 30%;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #000;
}*/

.showmodal h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
  margin: 15px 0;
}

.showmodal p {
  margin: 0 0 1em 0;
}

.showmodal ul {
  margin: 0 0 2em 0;
}

@media screen {

}

@media print {

}

@media (max-width: 768px) {
  .container {
    padding: 30px 25px;
    margin: 10px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* Loading state */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.domain-box {
  display: flex;
  flex-direction: column;
  flex: 50%;
  margin: 35px;
  text-align: center;
  background-image: url("./331194.png");
  background-repeat: no-repeat;
  background-size: 100%; /* calc(15.75em + 1.375rem) calc(15.75em + 1.375rem); */
}

.bold {
  font-weight: bold !important;
}

.title {
  font-family: Montserrat;
  font-size: 42px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-text-header);
}

.margin-right {
  margin-right: 35px;
}

.text {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 16px;

}

.price {
  font-size: 32px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 16px;
}

.img-container {
  margin-top: 15px;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media only screen and (max-width: 1200px) {

  .title {
  font-size: 32px;
  }

  .subtitle {
  font-size: 24px;
  padding-left: 17px !important;
  }
}


@media only screen and (max-width: 1050px) {

  .title {
  font-size: 48px;
  }

  .subtitle {
  font-size: 18px;
  padding-left: 17px !important;
  }

  ul,ol li {
  font-size: 12px;
  margin-top: 4px;
  }
  .container {
    flex-direction: column;
  }
}

@media only screen and (max-width: 720px) {

  .title {
  font-size: 32px;
  }

  .subtitle {
  font-size: 18px;
  padding-left: 8px !important;
  }
  .price {
  font-size: 18px;
  }
}

.footer {
  margin-top: 2%;
  display: flex;
  flex-direction: column;
  color: white;
}

.footer .contain {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap:1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
}

.footer .col {
  padding: 0 20px 20px 10px;
}
.footer .col h1 {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
  padding: 20px 0px 5px 0px;
  color: rgba(255,255,255,0.4);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.250em;
}
.footer .col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer .col ul li a {
  color: #999999;
  font-size: 14px;
  font-family: inherit;
  font-weight: bold;
  padding: 5px 0px 5px 0px;
  cursor: pointer;
  transition: .2s;
  -webkit-transition: .2s;
  -moz-transition: .2s;
}

.footer .col ul li:before {
  content: '';
  margin-right: 0.4rem;
}

.footer .col ul li a:hover {
  color: #ffffff;
  transition: .1s;
  -webkit-transition: .1s;
  -moz-transition: .1s;
}

