:root {
  --dark: #192335;
  --light: #fffaef;
  --orange: #F48120;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

header {
  background: var(--light);
  color: var(--dark);
  padding: 10% 0;
  text-align: center;
  border-bottom: 4px solid var(--orange);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

header h1 {
  font-size: 3.8em;
  margin: 0;
  font-weight: bold;
}

header .subtitle {
  font-size: 1.8em;
  margin-top: 12px;
  color: var(--dark);
}

.highlight {
  color: var(--orange);
  font-weight: bold;
}

.hero {
  background: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.hero h2 {
  color: var(--dark);
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
  padding-bottom: 5px;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.5;
}

.hero-text .emphasis {
  color: var(--orange);
  font-weight: bold;
}

section {
  padding: 40px 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pricing-table th, .pricing-table td {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  border: 2px solid #ddd;
}

.pricing-table th {
  background: var(--dark);
  color: var(--light);
}

.pricing-table tr:nth-child(even) {
  background: #fdfdfd;
}

.pricing-table tr:hover {
  background: var(--light);
  transition: background 0.3s ease, transform 0.2s ease;
  transform: scale(1.01);
}

.pricing-table tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
.pricing-table tr:first-child th:last-child {
  border-top-right-radius: 12px;
}
.pricing-table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
.pricing-table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.highlight-tier {
  background: #fff5e6 !important;
  font-weight: bold;
  box-shadow: inset 0 0 10px rgba(244,129,32,0.4);
}

.best-value {
  background: var(--orange);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8em;
  margin-left: 6px;
  font-weight: bold;
}

.cta {
  background: var(--light);
  text-align: center;
  padding: 50px 20px;
  border-top: 4px solid var(--dark);
}

.cta h2 {
  color: var(--dark);
  margin-bottom: 15px;
}

.cta-button {
  background-color: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 1.2em;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #d96c1a;
  transform: scale(1.05);
}

footer {
  background: #ffffff;
  color: var(--dark);
  text-align: center;
  padding: 20px;
  border-top: 3px solid var(--orange);
  font-size: 0.9em;
}

.tech-stack {
  background: var(--light);
  padding: 50px 20px;
  text-align: center;
  border-top: 4px solid var(--dark);
}

.tech-stack h2 {
  color: var(--dark);
  margin-bottom: 30px;
}

.recommended-vpn {
  background: var(--light);
  padding: 50px 20px;
  text-align: center;
  border-top: 4px solid var(--dark);
}

.stack-row {
  display: flex;
  justify-content: center;
  gap: 2%;
  flex-wrap: nowrap;
  align-items: flex-start; /* ensures baseline alignment */
}

.stack-item {
  max-width: 220px;
  text-align: center;
}

.stack-item img {
  width: 100%;
  height: 50px;
  object-fit: contain; /* keeps aspect ratio */
  margin-bottom: 12px;
  transition: transform 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.stack-item img:hover {
  transform: scale(1.1);
}

.stack-item h3 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.2em;
}

.stack-item p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.4;
}
