body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  background: #3C3C3C;
  color: #fff;
  line-height: 1.5;
}
h1, h2, h3 {
    font-family: "IM Fell Double Pica SC", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 0 0.5em;
    color: #FF6A00;
}
a {
  color: #FF6A00;
  text-decoration: none;
}
a:hover {
  color: #FFA34D;
}
ul {
  list-style: none;
  text-align: left;
}

/* Hero */
.header-nav {
  margin-top: 15px;
  display: flex;
  flex-direction: inline;
  font-family: "IM Fell Double Pica SC", serif;
  font-weight: 600;
  font-size: 26px;
  text-align: right;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  text-align: right;
  margin: 15px 25px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row; 
  justify-content: center;
  align-items: center;
  text-align: left; 
  background: linear-gradient(to bottom, #3C3C3C, #2B2B2B);
  padding: 2rem;
  gap: 2rem;
}
.hero-login {
  flex: 1 1 40%;   
  display: flex;
  justify-content: center;
}
.inline-promo {
  display: flex;
  flex-direction: row; 
  justify-content: flex-start; 
  align-items: center;
  gap: 1rem; 
  padding: 10px 0;
}
.hero-promo-content {
  flex: 1 1 60%;   
  max-width: 60%;
}
.hero-pretitle,
.name {
    font-family: 'IM Fell Double Pica SC', serif;
}
.name {
    color: #FF6A00;
}
.hero-pretitle {
    color: white;
    font-size: 1rem;
}
.hero-preheader {
margin-bottom: -20px;
}
.hero-preheader p {
  font-family: "IM Fell Double Pica SC", serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}       
.hero h1 {
  font-size: 4rem;
  align-content: center;
  margin-top: 6%;
}
.logo {
  height: 150px;
  margin: .5rem 0;
}
.subtitle {
  color: #C0C0C0;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Expire Promo (countdown) */
.expire-promo {
  padding: 60px 20px;
  color: #f4e1c1;
  font-family: 'IM Fell Double Pica SC', serif;
  text-align: center;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.5rem;
}

.time-box {
  padding: 15px 20px;
  min-width: 70px;
}

.time-box span {
  display: block;
  font-size: 3.5rem;
  color: #FF6A00;
  margin-bottom: 5px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}

/* More Arrow */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #FF6A00;
    cursor: pointer;
    animation: bounce 2s infinite;
    opacity: 0.8;
}

    .scroll-indicator:hover {
        opacity: 1;
        color: #FFA34D;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, 10px);
    }

    60% {
        transform: translate(-50%, 5px);
    }
}


/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}
.btn.primary {
  background: #FF6A00;
  color: #fff;
}
.btn.primary:hover {
  background: #FFA34D;
}
.btn.secondary {
  border: 2px solid #ff6a00;
  color: #ff6a00;
}
.btn.secondary:hover {
  background: #ff6a00;
  color: #fff;
}
.btn.full {
  width: 100%;
  font-size: 1rem;
}

/* FAQ Section & Sign Up Form */
.faq-sign-up {
    margin: 0;
    font-size: 16px;
    background: #3C3C3C;
    padding: 150px 0;
}

.faq-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

div[class*='col-'] {
    padding: 0 30px;
}

.wrap {
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

.faq-sign-up .faq-link {
    font-family: "IM Fell Double Pica SC", serif;
    color: #fff;
    text-decoration: none;
}

.faq-sign-up .faq-link:focus,
.faq-sign-up .faq-link:hover,
.faq-sign-up .faq-link:active {
    outline: 0;
    text-decoration: none;
}

.launch-info {
    color: #fff;
    padding: 20px;
}

.launch-info h2 {
    font-family: "IM Fell Double Pica SC", serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #FF6A00;
}

.launch-info p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.launch-form {
    display: flex;
    margin-bottom: 20px;
}

.launch-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    color: #2B2B2B;
}

.launch-form button {
    background-color: #FF6A00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.launch-form button:hover {
    background-color: #e55d00;
}

.social-icons {
    margin-top: 5%;
}

.social-icons i {
    color: #FF6A00;
    padding: 25px 0;
}

.social-icons i:hover {
    color: white;
    }

.social-icons a {
    font-size: 40px;
    margin-right: 15px;
    transition: color 0.3s;
}

.faq-sign-up .panel {
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: none;
}

.faq-sign-up .panel + .panel {
    margin-top: 0;
}

.faq-sign-up .panel-heading {
    background-color: #FF6A00;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    padding: 0; /* header padding handled in link */
}

.faq-sign-up .panel-title a.faq-link {
    display: block;
    color: #fff;
    padding: 15px;
    position: relative;
    font-size: 24px;
    font-weight: 400;
}

.faq-sign-up .panel-body {
    padding: 20px;
    margin: 0;
    border-top: none;
    background: #fff;
}

.faq-sign-up .panel:last-child .panel-body {
    border-radius: 0 0 4px 4px;
}

.faq-sign-up .panel:last-child .panel-heading.active {
    border-radius: 0;
}

.faq-sign-up .panel-heading a.faq-link:before {
    content: '\e316';
    font-size: 24px;
    position: absolute;
    font-family: 'Material Icons';
    right: 5px;
    top: 10px;
    transform: rotate(180deg);
    transition: all 0.5s;
}

.faq-sign-up .panel-heading.active a.faq-link:before {
    transform: rotate(0deg);
    transition: all 0.5s;
}

#bs-collapse .panel-heading a.faq-link:after {
    content: ' ';
    font-size: 24px;
    position: absolute;
    font-family: 'Material Icons';
    right: 5px;
    top: 10px;
    transform: scale(0);
    transition: all 0.5s;
}

#bs-collapse .panel-heading.active a.faq-link:after {
    content: '\e909';
    transform: scale(1);
    transition: all 0.5s;
}

/* Features Section */
.features {
  position: relative; /* allow pseudo-element positioning */
  background: #2b2b2b;
  padding: 6rem 5%;
  text-align: center;
  color: #eee;
  overflow: hidden; /* contain animation */
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px; /* thickness of the “forge fire” line */
  background: linear-gradient(90deg, #ff6a00, #ff8c42, #ff6a00);
  background-size: 200% 100%;
  animation: forge-glow 3s linear infinite;
  border-radius: 3px;
}

/* Animation keyframes */
@keyframes forge-glow {
  0% { background-position: 200% 0; }
  50% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}


.features h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  font-family: 'IM Fell Double Pica SC', serif;
}

.features-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
}

/* Center content and limit width like Pricing */
.features .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two columns max */
  gap: 2rem;
  max-width: 900px; /* matches the visual width of pricing section */
  margin: 0 auto; /* center grid */
  margin-top: 2rem;
}

/* Individual Card Styling */
.card {
  background: #2b2b2b;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, #2b2b2b, #3c3c3c);
}

/* Icons */
.card ion-icon {
  font-size: 64px;
  color: #ff6a00;
  display: block;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(255,106,0,0.6);
  transition: transform 0.5s ease-in-out;
}

/* Icon hover animation: slide left to right and back */
.card:hover ion-icon {
  transform: translateX(10px);
}

/* Card Headings */
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #ffb470;
}

/* Card Paragraphs */
.card p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}



/* Pricing Section */
.pricing {
  background: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 6rem 5%;
}

.pricing h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: #aaa;
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

/* Grid layout for tiers */
.tiers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Base Tier Styles */
.tier {
  background: #2b2b2b;
  border-radius: 16px;
  padding: 3rem 2rem;
  width: 280px;
  position: relative; /* for ribbon positioning */
  transition: transform 0.3s, box-shadow 0.3s;
  color: #eee;
}

.tier:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.tier h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Tier Description */
.tier-description {
  font-size: 0.85rem; 
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: left;
}

.tier.highlight .tier-description {
  color: #fff;
}

/* Tier Features List */
.tier ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.tier ul li {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

/* Price Ribbon */
.price-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff6a00;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-size: 0.9rem;
  z-index: 5;
  transform: translate(-10px, -10px) rotate(-5deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Pro Tier Ribbon */
.tier.highlight .price-ribbon {
  background: #fff;
  color: #ff6a00;
  font-size: 1rem;
  transform: translate(-12px, -12px) rotate(-5deg);
}

/* Price Styling (used if not using ribbon) */
.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1.2rem 0;
  color: #ff6a00;
}

.price span {
  font-size: 1rem;
  color: #aaa;
}

/* Tier Variants */
.tier.free {
  border: 2px dashed #888;
  background: #2c2c2c;
}

.tier.enterprise {
  border: 2px solid #555;
  background: #242424;
}

/* Highlight Pro Tier */
.tier.highlight {
  border: 3px solid #ff6a00;
  background: #ff6a00;
  color: #fff;
  transform: scale(1.1);
  z-index: 10;
}

.tier.highlight h3, 
.tier.highlight ul li, 
.tier.highlight .price {
  color: #fff;
}

/* "Most Popular" Badge */
.tier .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #fff;
  color: #ff6a00;
  font-weight: bold;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Buttons */
.tier .btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  margin-top: 1rem;
}

.tier .btn.primary {
  background: #fff;
  color: #ff6a00;
}

.tier .btn.primary:hover {
  background: #ffe6d6;
  color: #ff6a00;
}

.tier .btn.outline {
  border: 2px solid #ff6a00;
  color: #ff6a00;
}

.tier .btn.outline:hover {
  background: #ff6a00;
  color: #fff;
}

/* Featured CTA Section */
.cta-featured {
  width: 100%;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: white; 
  text-align: center;
  padding: 6rem 2rem;
  border-top: 8px solid #ff6a00; 
  border-bottom: 2px solid #ff6a00;
  box-shadow: inset 0 0 80px rgba(255, 106, 0, 0.2), 0 10px 35px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.cta-featured .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-featured h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  font-family: 'IM Fell Double Pica SC', serif;
}

.cta-featured p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  color: white;
}

.cta-featured .cta-btn {
  display: inline-block;
  background: #ff6a00; 
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-featured .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  background: #ff8c42;
}

/* Login Page */
.login-page {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  gap: 2rem; 
}
.login-card {
  background: #2b2b2b;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  width: 100%;           
  max-width: 400px;      
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-banner {
  display: flex;
  justify-content: center;
  align-content: center;
}
.login-banner h1 {
  font-family: "IM Fell Double Pica SC", serif; 
  font-weight: 400;
  font-size: 3rem; 
  font-style: normal;  
  align-content: center;
  padding: 25px 0 0 15px;
}
.logo-small {
  height: 90px;
  margin-bottom: .5rem;
}
.login-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}
.login-card input {
  width: 100%;                
  padding: 0.75rem;          
  background: transparent;
  border-bottom: 1px solid #ff7200;
  border-top: none;
  border-right: none;
  border-left: none;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  font-family: sans-serif;
  box-sizing: border-box;    
}
.login-card input:focus {
  border-color: #FF6A00;
  outline: none;
}
::placeholder{
    color: #fff;
    font-family: Arial;
}
.login-card button {
  width: 100%;                
  padding: 0.85rem;
  border: none;
  border-radius: 8px;
  background: #FF6A00;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.login-card button:hover {
  background: #FFA34D;
}
/* Remember Me Token */
.remember-me {
  display: flex;
  align-items: center;       
  justify-content: flex-start; 
  gap: 18px;         
  margin-top: 5px;
}

.remember-me label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.85rem;        
  color: white;               
  text-align: left;
  gap: 10px;       
}

.remember-me input[type="checkbox"] {
  width: 18px;               
  height: 18px;
  accent-color: #FFA34D;     
  cursor: pointer;
}

.remember-me span {
  user-select: none;         
}

.forgotten, .signup {
  text-align: center;
  font-size: 0.9rem;
  color: #C0C0C0;
}
.forgotten {
  margin-top: 0;
}
.signup {
  margin-top: 1rem;
}
.forgotten a, .signup a {
  color: #FF6A00;
  font-weight: bold;
}
.forgotten a:hover, .signup a:hover {
  color: #FFA34D;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 12px; 
  margin-bottom: 1rem;
}

.form-row label {
  flex: 0 0 auto; 
  font-weight: bold;
}

.select-wrapper {
  position: relative;
  flex: 1; 
}

/* Styled select */
.select-wrapper select {
  width: 100%;
  padding: 10px;
  padding-right: 2rem;      
  border: 2px solid orange;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Custom caret */
.select-wrapper::after {
  content: "▼";               
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;        
  font-size: 0.8rem;
  color: orange;
}

/* Back to Top – Forge-Hammer Left Side */
#back-to-top {
  position: fixed;
  bottom: 2.5rem;
  left: 2.5rem; /* move to left side */
  background: linear-gradient(135deg, #ff6a00, #ff8c42);
  color: #1e1e1e;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  font-weight: bold;
}

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, #ffe6d6, #ffb270);
}

#back-to-top ion-icon {
  font-size: 28px;
  color: #1e1e1e;
  text-shadow: 0 0 6px rgba(0,0,0,0.5);
}

#back-to-top span {
  font-size: 0.95rem;
  color: #1e1e1e;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* Footer */
footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: White;
}
footer a {
  color: White;
}
footer a:hover {
  color: White;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column; /* stack vertically */
    text-align: center;
  }

  .hero-promo-content, 
  .hero-login {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-promo-content {
    margin-bottom: 2rem;
  }

  .login-card {
    max-width: 100%;  /* card stretches full width on mobile */
  }
}


