:root {
  --primary-color: #87ea66;
  --primary-dark: #66c447;
  --primary-light: #a8f087;
  --primary-font-color: #1a1a1a;
  --secondary-font-color: #555;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --bg-light: #f9fafb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--primary-font-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: .5em 4em;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 1);
}

.logo {
  width: 200px;
}

.scrolled {
  box-shadow: var(--shadow-md);
}

.header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

nav .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav .nav-link {
  font-weight: 600;
  padding: 5px 8px;
  font-size: 0.95rem;
  letter-spacing: .5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link>a,
.nav-link>p {
  color: var(--primary-font-color);
  text-decoration: none;
}

.nav-link>a::after,
.nav-link>p::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

@media (min-width: 768px) {

  .nav-links a:hover,
  .nav-links p:hover {
    color: var(--primary-color);
  }

  .nav-links a:hover::after,
  .nav-links p:hover::after {
    width: 100%;
  }
}

/* Dropdown */

.dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  margin-top: 10px;
}

.dropdown a {
  padding: 20px;
  display: block;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  color: var(--primary-font-color);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown a:hover {
  color: var(--primary-color);
  background-color: var(--bg-light);
}

.nav-link:hover .dropdown {
  visibility: visible;
  opacity: 1;
}

.nav-link-dropdown-only {
  display: none;
}

/* Hamburger Menu */

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--primary-font-color);
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
}

.nav-toggle-label span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-label span::before {
  content: '';
  top: -8px;
}

.nav-toggle-label span::after {
  content: '';
  top: 8px;
}

@media (max-width: 768px) {
  .header {
    padding: 1em 2em;
  }

  /* Show hamburger menu */
  .nav-toggle-label {
    display: block;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .dropdown a,
  .dropdown p {
    padding: 12px 15px 12px 30px;
    font-size: 16px;
    background-color: rgba(135, 234, 102, 0.05);
  }

  .dropdown a:hover,
  .dropdown p:hover {
    background-color: var(--bg-light);
  }

  .nav-link:hover .dropdown,
  .nav-link:focus-within .dropdown {
    max-height: 200px;
  }

  .nav-toggle:checked~.nav-links {
    max-height: 600px;
    padding: 10px 0;
  }

  .nav-links {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
  }

  .nav-link {
    padding: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link>a,
  .nav-link>p {
    display: block;
    padding: 16px 20px;
    font-size: 17px;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
  }

  .nav-link>a:hover,
  .nav-link>a:active,
  .nav-link>p:hover,
  .nav-link>p:active {
    background-color: rgba(135, 234, 102, 0.08);
  }


  /* Hide desktop login button */
  .nav-btn {
    display: none;
  }

  .nav-link-dropdown-only {
    display: block;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    border-top: 2px solid var(--primary-light);
    margin-top: 8px;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
  }

  .nav-link-dropdown-only:hover {
    background-color: rgba(135, 234, 102, 0.12);
    padding-left: 24px;
  }

  /* Prevent background scrolling when menu is open */
  .nav-toggle:checked~body {
    overflow: hidden;
  }
}

.nav-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 0.65rem 1.8rem;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(135, 234, 102, 0.3);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(135, 234, 102, 0.4);
}

/* Section */

section {
  padding: 4em 2em;
}


/* Hero Section */

section.hero {
  /* padding: 6em 2em; */
  background: linear-gradient(180deg, rgba(135, 234, 102, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
}

section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.3;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 0 auto;
  max-width: 1200px;
}

.hero-heading {
  display: flex;
  flex-direction: column;
}

.hero-heading-center {
  align-items: center;
  text-align: center;
}

.hero-heading h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary-font-color) 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-heading p.subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--secondary-font-color);
  margin-bottom: 1.5rem;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-heading p.highlight {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-fade {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-cta a {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(135, 234, 102, 0.35);
  position: relative;
  overflow: hidden;
}

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

.btn-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(135, 234, 102, 0.45);
}

.btn-cta a:hover::before {
  left: 100%;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p.subtitle {
    font-size: 1.1rem;
  }
}

/* Services Section */

section.services {
  padding: 5em 2em;
  background: var(--bg-light);
  text-align: center;
}

section.services h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

section.services>p {
  font-size: 1.2rem;
  margin-bottom: 4rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

ul.service-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  padding: 3rem 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.service-icon img {
  width: 100px;
  height: 100px;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-font-color);
}

.service-card p {
  line-height: 1.7;
  color: var(--secondary-font-color);
  font-size: 1rem;
  margin: 0;
}

/* Additional Sections */

section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

section:nth-of-type(even) {
  background: linear-gradient(135deg, rgba(135, 234, 102, 0.08) 0%, rgba(102, 196, 71, 0.08) 100%);
}

/* Plans and Pricing */

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.pricing-header p {
  font-size: 1.3rem;
  max-width: 600px;
  color: var(--text-light);
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: stretch;
  margin-bottom: 60px;
}

.plan-card {
  border-radius: 20px;
  padding: 50px 40px;
  background: white;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(135, 234, 102, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  border: 2px solid var(--primary-color);
  box-shadow: 0 8px 30px rgba(135, 234, 102, 0.15);
}

.plan-card:nth-child(2)::before {
  transform: scaleX(1);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.plan-card:hover::before {
  transform: scaleX(1);
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-font-color);
}

.plan-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.plan-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
}

.plan-description {
  margin-bottom: 35px;
  line-height: 1.7;
  color: var(--secondary-font-color);
}

.plan-features {
  list-style: none;
}

.plan-features li {
  display: flex;
  padding: 15px 0;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: padding-left 0.3s ease;
}

.plan-card:hover .plan-features li {
  padding-left: 8px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: var(--primary-color);
  margin-right: 12px;
  font-weight: bold;
  font-size: 1.3rem;
}

.plan-cta {
  width: 100%;
  padding: 16px 32px;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  background: white;
  color: var(--primary-color);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.05rem;
  display: block;
  transition: all 0.3s ease;
}

.plan-cta:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(135, 234, 102, 0.4);
}

/* FAQ Section */

.faq {
  padding: 100px 40px;
  margin: 0 auto;
  max-width: 1000px;
}

.faq h2 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2d7a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.faq-item {
  margin-bottom: 18px;
  background: white;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(135, 234, 102, 0.15);
}

.faq-question {
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  padding: 1em;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  background-color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: "\002B";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  line-height: 1;
  color: var(--secondary-font-color);
}

.faq-item.active .faq-question {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.faq-item.active .faq-question::after {
  content: "\2212";
  transform: rotate(180deg);
}

.faq-answer {
  color: var(--secondary-font-color);
  text-align: left;
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

/* Responsive Design */

@media (max-width: 768px) {
  header {
    padding: 1em 2em;
  }

  section.hero h1.title {
    font-size: 2.5rem;
  }

  section.hero p.subtitle {
    font-size: 1.2rem;
  }

  .btn-cta a {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  section.services h2,
  section h2 {
    font-size: 2.2rem;
  }

  .testimonials {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .pricing-header h1 {
    font-size: 2.5rem;
  }

  .plans-grid,
  ul.service-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature */


.feature {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-reverse {
  flex-direction: row-reverse;
}

.feature:last-child {
  margin-bottom: 0;
}

.feature:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  max-width: 650px;
}

.feature-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.feature-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--primary-font-color);
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--secondary-font-color);
}

.photo-feature {
  flex: 1;
}

.photo-feature img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
}

.photo-feature svg {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  display: block;
  stroke: var(--primary-dark);
  fill: var(--primary-dark);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {

  .feature,
  .feature:nth-child(even) {
    flex-direction: column;
  }

  .feature-content,
  .photo-feature {
    max-width: 100%;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .feature-description {
    font-size: 1rem;
  }
}

/* Web Hosting */

.plan-feature-list-container {
  margin: 0 auto;
  max-width: 900px;
  padding: 40px 20px;
}

.plan-feature-list-container h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-font-color);
}

ul.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}

li.feature-item {
  font-weight: 600;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--secondary-font-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

li.feature-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
  color: var(--primary-color);
}

@media (max-width: 600px) {
  ul.feature-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-feature-list-container h2 {
    font-size: 1.75rem;
  }
}

/* Icon Feature */

.icon-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.icon-feature-item {
  display: flex;
  gap: 24px;
  /* align-items: flex-start; */
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-feature-content {
  flex: 1;
  padding-top: 4px;
}

.icon-feature-content h3 {
  font-size: 1.5rem;
  color: var(--primary-font-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.icon-feature-content p {
  font-size: 1.05rem;
  color: var(--secondary-font-color);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .icon-features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .icon-feature-item {
    gap: 20px;
  }

  .icon-wrapper {
    height: 56px;
    min-width: 56px;
  }

  .icon-wrapper svg {
    width: 28px;
    height: 28px;
  }

  .icon-feature-content h3 {
    font-size: 1.3rem;
  }

  .icon-feature-content p {
    font-size: 1rem;
  }
}

/* Utility Classes */

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 24px;
}

.mb-3 {
  margin-bottom: 24px;
}

/* Section Content */

.section-header {
  margin: 0 auto 40px auto;
  max-width: 800px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-font-color);
  max-width: 600px;
  margin: 0 auto;
}

.section-header p {
  font-size: 1.4rem;
  color: var(--text-light);
  max-width: 800px;
  line-height: 1.8;
}

.section-text {
  max-width: 700px;
  margin: 0 auto;
}

.section-text p {
  font-size: 1.05rem;
  color: var(--secondary-font-color);
}

.section-text a {
  color: var(--primary-font-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.section-text a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1400px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  height: 60px;
  width: 60px;
  margin-bottom: 20px;
}

.card-icon {
  fill: var(--primary-dark);
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-font-color);
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: var(--secondary-font-color);
  line-height: 1.6;
}

/* Feature Card */

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

.feature-card {
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.feature-card-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-dark);
  color: white;
  padding: 6px 14px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 16px;
}

.feature-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
  margin-bottom: 14px;
}

.feature-card-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
}


/* Testimonial Card */

.testimonial-card {
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}

.testimonial-card::before {
  content: '\201c';
  font-size: 80px;
  color: var(--primary-light);
  opacity: .8;
  position: absolute;
  top: 15px;
  left: 25px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1), 0 16px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--secondary-font-color);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-font-color);
}

/* Domain Search Form */
.domain-search-form {
  display: flex;
  gap: 12px;
  margin: 0 auto;
  max-width: 800px;
}

.domain-search-form input[type="text"]:not([hidden]) {
  flex: 1;
  padding: 16px 20px;
  margin: 0;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 18px;
  transition: all 0.3s ease;
  outline: none;
}

.domain-search-form input[type="text"]:not([hidden]):focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.domain-search-form input[type="text"]:not([hidden])::placeholder {
  color: rgb(133, 133, 133);
}

.domain-search-form button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 16px 32px;
  line-height: normal;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.domain-search-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(135, 234, 102, 0.4);
}

.domain-search-form button:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .domain-search-form {
    flex-direction: column;
  }
}

/* Notice Box */

.notice {
  font-size: 1rem;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(135, 234, 102, 0.08) 0%, rgba(102, 196, 71, 0.08) 100%);
  border-radius: 8px;
  border: 1px solid var(--primary-light);
  max-width: fit-content;
  margin: 20px auto;

  p {
    margin: 0;
    color: var(--secondary-font-color);
  }

  a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
  }
}

/* Domain Pricing Grid */

.domain-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.domain-pricing-item {
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  padding: 32px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.domain-pricing-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-color);
}

.domain-extension {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-font-color);
  font-family: 'Courier New', monospace;
}

.domain-price {
  font-size: 1.25rem;
  ;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Contact Form */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  background: white;
}

.form-group label {
  font-weight: 600;
  color: var(--primary-font-color);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-font-color);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(135, 234, 102, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(135, 234, 102, 0.3);
  margin-bottom: 0;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(135, 234, 102, 0.4);
}

.contact-form button:active {
  transform: translateY(0);
}

/* Footer */

footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-font-color);
}


.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: var(--secondary-font-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.footer-column a:hover {
  color: var(--primary-color);
}

hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--secondary-font-color);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

/* Legal */

.legal-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--primary-font-color);
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--primary-font-color);
  margin-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.7rem;
  color: var(--primary-font-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.4rem;
  color: var(--primary-font-color);
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}