/* Typography & Core */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
  --primary: #f97316; /* Orange */
  --secondary: #ef4444; /* Red */
  --dark: #111827;
  --gray-text: #4b5563;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background-color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Background Gradients */
.bg-mesh {
  background-image: 
    radial-gradient(at 0% 0%, hsla(12,100%,97%,1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(35,100%,98%,1) 0, transparent 50%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.nav-logo img {
  height: 40px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--gray-text);
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--dark);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-section { grid-template-columns: 1fr 1fr; padding: 8rem 2rem; }
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #ffedd5;
  color: #c2410c;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }

.text-gradient {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-p {
  font-size: 1.25rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.btn-group {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
  transition: transform 0.2s;
}

.btn-secondary {
  border: 2px solid #e5e7eb;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-primary:hover, .btn-secondary:hover { transform: scale(1.03); }

/* Geometric Card (Hero Right) */
.geo-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

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

.geo-box {
  height: 120px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Card */
.contact-card-wrapper {
  max-width: 600px;
  margin: 4rem auto;
  text-align: center;
}

.contact-card {
  background: white;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  position: relative;
}

.mailto-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: block;
  margin: 1.5rem 0;
  word-break: break-all;
}

.mailto-link:hover { color: var(--primary); }

/* Content Pages */
.content-section {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.content-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
  padding: 3rem;
}

.content-card h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.content-card h2:first-of-type {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: var(--gray-text);
}

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

.content-card ul {
  margin: 0 0 1rem 1.25rem;
}

.content-card a {
  color: var(--primary);
  font-weight: 600;
}

.content-meta {
  color: var(--gray-text);
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  margin-top: auto;
  padding: 2.5rem 2rem;
  border-top: 1px solid #f3f4f6;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-link {
  color: var(--gray-text);
  display: inline-block;
  font-weight: 600;
  margin-top: 0.75rem;
  text-decoration: none;
}

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

@media (max-width: 640px) {
  .content-section {
    padding: 3rem 1rem;
  }

  .content-card {
    padding: 2rem;
  }
}
