@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --accent: #0071e3;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --border: #e2e8f0;
  --accent-color: #0071e3;
  --text-main: #1d1d1f;
  --text-secondary: #86868b;
  --bg-white: #ffffff;
  --bg-gray: #f5f5f7;
  --border-color: rgba(0, 0, 0, 0.05);
  --max-width: 1200px;
  --radius-xl: 2rem;
  --radius-l: 1.5rem;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-white);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

main {
  padding-top: 100px;
  min-height: 100vh;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

nav {
  padding: 1rem;
}

.nav-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-color);
}

.btn-pro {
  display: block;
  background: var(--text-main);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  min-width: max-content;
}

.headline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.main-article {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.main-article:hover img {
  transform: scale(1.05);
}

.article-overlay {
  position: absolute;
  bottom: 0;
  padding: 2.5rem;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.badge {
  background: var(--accent-color);
  padding: 0.25rem 0.75rem;
  font-size: 10px;
  font-weight: 800;
}

.sidebar h3 {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.trending-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
}

.trending-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.trending-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e5e5e7;
}

.trending-content p {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.news-card {
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-8px);
}

.card-img {
  aspect-ratio: 16/10;
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-bottom: 1rem;
}

.category-text {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-color);
}

.about-section {
  text-align: center;
  padding: 120px 0 0 0;
}

.section-tag {
  color: var(--accent-color);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.about-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.ceo-card {
  background: var(--bg-gray);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.ceo-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.ceo-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#page-services {
  padding: 120px 1rem 0 1rem !important;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}

.price-card {
  background: var(--bg-gray);
  padding: 3rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.premium {
  background: var(--text-main);
  color: var(--bg-white);
  position: relative;
}

.card-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--accent-color);
  font-size: 9px;
  font-weight: 900;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.price-card h4 {
  font-size: 1.25rem;
}
.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
}
.feature-list {
  list-style: none;
  margin: 2rem 0;
}
.feature-list li {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.btn-action {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.price-card.premium .btn-action {
  background: var(--accent-color);
  color: white;
}
.price-card:not(.premium) .btn-action {
  border: 2px solid #e5e5e7;
  color: var(--text-main);
}

footer {
  padding: 2rem;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .nav-left {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .nav-links {
    margin-top: 0;
  }
  .headline-grid {
    grid-template-columns: 8fr 4fr;
  }

  .main-article h2 {
    font-size: 3rem;
  }

  .ceo-card {
    flex-direction: row;
    gap: 4rem;
  }

  .ceo-img {
    flex-shrink: 0;
  }

  .ceo-info {
    text-align: left;
  }
  .ceo-info p {
    font-size: 15px;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}
