*{padding:0px; margin:0px;}
body{min-height:100vh;}
img{width:100%;cursor:pointer;}
ul.wolahn{width:100%; height:100%; position:fixed; left:0px; top:0px; background:rgba(0,0,0,0.95); z-index:1000;}
ul.wolahn li{width: 5vh;height: 5vh;border: 4px solid #e3e3e3;border-top: 4px solid #3498db;border-radius: 50%;animation: liwehso 1s linear infinite;margin:auto; margin-top:47.5vh;list-style:none;}
@keyframes liwehso{0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}

:root {
  --primary-color: #1e3a8a;
  --accent-color: #f97316;
  --muted-color: #f1f5f9;
  --text-color: #1f2933;
  --light-text: #5d6673;
  --border-color: #d1dbe8;
  --background-color: #ffffff;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  gap: 0.6rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), #fb923c);
  color: #0f172a;
  font-weight: 900;
  font-size: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #e2e8f0;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover,
nav a:focus,
nav a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero {
  background: linear-gradient(155deg, #1d4ed8, #0f172a);
  color: #fff;
  padding: 4rem 1.5rem;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero p {
  color: #dbeafe;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  background: var(--accent-color);
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 4rem 1.5rem;
}

.section.alt {
  background: var(--muted-color);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p.lead {
  max-width: 760px;
  font-size: 1.05rem;
  color: var(--light-text);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: var(--muted-color);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-text);
}

.highlight {
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
  margin: 1rem 0;
  color: var(--light-text);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  flex: 1;
  min-width: 160px;
}

.stat h4 {
  font-size: 2rem;
  margin: 0;
  color: var(--primary-color);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.table th,
.table td {
  padding: 1rem;
  border: 1px solid var(--border-color);
  text-align: left;
}

.table th {
  background: var(--muted-color);
}

.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.guarantee-list li {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: #fff;
}

.timeline {
  border-left: 3px solid var(--border-color);
  padding-left: 1.5rem;
  margin-top: 2rem;
}

.timeline-item {
  margin-bottom: 1.5rem;
}

.timeline-item h4 {
  margin: 0 0 0.25rem 0;
  color: var(--primary-color);
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

form {
  display: grid;
  gap: 1rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  background: #0f172a;
  color: #cbd5f5;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
}

footer p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
