/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/** PAGE / BODY*/
body {
  font-family: "Arial", sans-serif;
  background: #ffffff;
  color: #333;
}

/* HEADER / NAV*/
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background-color: #fff;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  width: auto;
  height: auto;
}

.brand-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: #0056ff; 
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.login-link {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.cta-button {
  background-color: #0056ff;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
}

/*   HERO SECTION ***/
.hero-section {
  padding: 3rem 1rem 5rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 250, 240, 1) 40%,
    rgba(255, 250, 240, 1) 100%
  );
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hero-content h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero-content .highlight {
  color: #0056ff;
  text-decoration: underline;
}

.subtitle {
  max-width: 600px;
  margin: 0.5rem auto 2rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Primary button + secondary link */
.primary-btn {
  background-color: #0056ff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.secondary-link {
  text-decoration: none;
  color: #0056ff;
  align-self: center;
  font-weight: 500;
}

/* CHAIN CARD STYLES ***/
.chain-card {
  margin: 2rem auto;
  max-width: 600px;
  background-color: #f9fcff; 
  border: 1px solid #e0eafc; 
  border-radius: 12px;       
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* Soft shadow */
  text-align: center;
  position: relative;
  border-color: #0041cc;
}

/* Shadow circle underneath the card */
.vectorbehindcard {
  position:absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.vectorbehindcard img {
  width: 100px;
  opacity: 0.1;
}

/* Chain icons (centered alignment) */
.chain-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chain-icons img {
  height: 40px;
  object-fit: contain;
}

.icon-arrow {
  width: 20px; 
  transform: translateY(-5px); 
}

/* Chain card text */
.chain-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.chain-card p strong {
  font-weight: 600;
  color: #0056ff; 
}
.hero-ellipse img {
  position: absolute;
  bottom: -20px;
  align-items: center;
  transform: translateX(-50%);
  left: 50%;
  width: max-content;
  height: 80px;
  z-index: 1; 
}

/*RESPONSIVENESS*/
@media (max-width: 768px) {
  /* Hide nav ul, show hamburger */
  .navbar ul {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .chain-card {
    max-width: 100%;
  }
}

/* POSSIBILITIES SECTION */
.possibilities-section {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #f9fafc; /* Light grey for contrast */
}

/* Statistics Section */
.stats-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.stats-container .highlight {
  color: #0056ff; /* Blue highlight */
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  font-weight: 600;
}

.stat-item .stat-number {
  font-size: 2rem;
  color: #0056ff;
}

.stat-item p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #555;
}

/* WHY CHOOSE SECTION */
.why-choose-container {
  display: flex;
  flex-direction: row; /* Default on larger screens */
  padding: 20px;
  align-items: flex-start;
}
/*Heading in 'Why Choose Us' section*/
.why-choose-container h3 {
  flex: 1;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 700;
}
/*Highlight in 'Why Choose Us' section*/
.why-choose-container .highlight {
  color: #0056ff; /* Blue highlight */
}
/*Description in 'Why Choose Us' section*/
.why-description {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  flex: -1;
  font-size: 15px;
  color: black;
  line-height: 1.6;
  text-align: left;
}

/* Features Grid */
.features-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.feature-item {
  text-align: center;
  background-color: #f9fafc; /* Light grey cards */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056ff;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* RESPONSIVE STYLING */
@media (max-width: 768px) {
  .stats-grid {
      flex-direction: column;
      gap: 1.5rem;
  }

  .features-grid {
      grid-template-columns: 1fr;
  }

  /* Make 'Why Choose Us' stack on mobile */
  .why-choose-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
}

/* TRIM URL SECTION */
.trim-section {
  padding: 3rem 1rem;
}

/* Dark background container */
.trim-background {
  position: relative;
  min-height: 400px;   
  background: linear-gradient(
    to bottom right,
    #1a2e40 0%,
    #0a1f33 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The White Card */
.trim-card {
  background-color: #fff;
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  padding: 2rem;
}

/* Form Styles */
.trim-card form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Single Field */
.form-group input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 2px solid #cdd3df;
  border-radius: 6px;
  outline: none;
  color: #0056ff;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  border-color: #0056ff;
}

/* Row with two fields: domain + alias */
.form-row {
  display: flex;
  gap: 1rem;
  color:#0056ff;
}

.form-row select,
.form-row input {
  flex: 1;
  padding: 0.75rem;
  font-size: 1rem;
  border: 2px solid #cdd3df;
  border-radius: 6px;
  outline: none;
  color: #0056ff;
  transition: border-color 0.2s ease;
}

.form-row select:focus,
.form-row input:focus {
  border-color: #0056ff;
}

/* Trim URL Button */
.trim-btn {
  display: inline-block;
  background-color: #0056ff;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.trim-btn:hover {
  background-color: #0041cc;
}

/* Disclaimer Text */
.disclaimer {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #0056ff;
  text-align: center;
}

.disclaimer a {
  color: #0056ff;
  text-decoration: none;
  font-weight: 500;
}

.disclaimer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE MEDIA QUERIES*/
@media (max-width: 600px) {
  .trim-card {
    padding: 1.5rem;
  }
  .form-row {
    flex-direction: column;
  }
}

/* PRICING SECTION */
.pricing-section h2 {
  font-size: 2rem; 
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.pricing-section .highlight {
  color: #0056ff;
}

.pricing-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

.pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 50px 0;
}

.pricing-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  
}

.pricing-card.professional {
  background-color: #063760;
  color: #fff;
  width: 100%;
  max-width: 320px; /* Slightly bigger for the featured card */
  z-index: 1;
  min-height: 500px;
}

.pricing-card.professional h2 {
  font-size: 35px;
  margin-bottom: 10px;
  color: #ffffff;
}

.pricing-card.professional p {
  font-size: 18px;
  margin: 0;
  color: #ffffff;
}

.pricing-card p {
  font-size: 18px;
  margin: 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
}

.pricing-card ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url('/media/check-circle.png') no-repeat center center;
  background-size: contain;
}

.custom-pricing-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px 20px;
}

.get-Custom-Pricing-Button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 13px;
  border: 1px solid #0056ff;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: #0056ff;
  font-weight: 600;
  justify-content: center;
}

.Select-Pricing-Button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 13px;
  border: 1px solid #0056ff;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  background-color: #0056ff;
  color: #fff;
}

.highlight button {
  background-color: #1d72b8;
  color: white;
}

.pricing-card:not(.highlight) button {
  background-color: #0d1117;
  color: white;
}


.pricing-card:not(:last-child) {
  margin-right: -55px; /* Overlap effect on desktop */
}

@media (max-width: 768px) {
  .pricing-container {
      flex-direction: column;
      gap: 2rem;
  }
  .pricing-card:not(:last-child) {
      margin-right: 0; /* Remove overlap effect on mobile */
  }
}

/* FAQ SECTION */
.faq-section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.faq-section h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: left; /* or center, if you prefer */
  color: #222;
}

/* Each <details> block */
.faq-item {
  margin-bottom: 1rem; 
  border-top: 1px solid #ccc;
  padding: 1rem 0 0;
  cursor: pointer;
}

/* Style the summary so it looks like a clickable heading */
.faq-item summary {
  outline: none;  
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

/* Using pseudo-element for plus/minus */
.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

/* When <details> is open, show minus */
.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

/* The actual FAQ answer content (inside <details>) */
.faq-item p {
  margin-top: 1rem;
  line-height: 1.6;
  color: #555;
}

/* DARK HERO SECTION */
.dark-hero {
  background: linear-gradient(
    to right, 
    #1a2e40, 
    #0a1f33
  );
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  color: #fff;
}

.dark-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.dark-hero h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: white;
}

.dark-hero-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  background-color: #0056ff; 
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.dark-hero-btn:hover {
  background-color: #003bb8;
}

/* FOOTER */
.footer {
  background: #f5f8fb;
  color: #1d1d1f;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.footer-logo {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-section {
  flex: 1 1 calc(20% - 20px);
  min-width: 150px;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #1d1d1f;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #007bff;
}

.footer-socials {
  text-align: center;
}

.footer-socials a {
  margin: 0 10px;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #7b7b7b;
}

@media (max-width: 768px) {
  .footer-section {
      flex: 1 1 45%;
  }

  .footer-logo {
      margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .footer-section {
      flex: 1 1 100%;
  }
}
