/* Siri Jin - Exact Mockup Match */
:root {
  --primary-blue: #1d4ed8; 
  --light-blue: #eff6ff;
  --accent-orange: #ff7f00;
  --light-orange: #fff7ed;
  --bg-main: #f4f7f9;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --card-bg: #ffffff;
  --border-radius: 1.5rem;
  --card-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
}

/* Navbar */
.agency-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

.agency-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.agency-links a {
  margin-left: 2rem;
  font-weight: 600;
  color: var(--text-gray);
  font-size: 1rem;
}

.agency-links a:hover {
  color: var(--primary-blue);
}

.agency-links .btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 50px;
}
.agency-links .btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

/* Hero Section */
.agency-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 8rem;
  background: linear-gradient(to bottom, #ffffff 0%, var(--bg-main) 100%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.agency-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-family: 'Inter', 'Prompt', sans-serif;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
  font-weight: 800;
}

.agency-hero p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.btn-gradient {
  background: var(--primary-blue);
  color: white;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.2);
}

.btn-gradient:hover {
  background: #1e40af;
  transform: translateY(-3px);
}

/* Common Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.125rem;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 3rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.recommended {
  border: 2px solid var(--primary-blue);
}

.badge-recommended {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.pricing-price-box {
  margin-bottom: 1.5rem;
}

.pricing-label {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.pricing-price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-unit {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-gray);
}

.monthly-pill {
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: 0.85rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 2rem 0;
}

.monthly-pill.orange {
  background: var(--light-orange);
  color: var(--accent-orange);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-footer-pill {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-gray);
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  margin-top: auto;
}

/* Portfolio Section */
.portfolio-section {
  padding: 4rem 0 8rem 0;
  background: var(--bg-main);
}

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

.demo-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  box-shadow: var(--card-shadow);
  text-decoration: none;
}

.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.demo-card h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 800;
}

.demo-card p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

.card-bottom {
  margin-top: auto;
  width: 100%;
}

.btn-demo {
  display: block;
  text-align: center;
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.demo-card:hover .btn-demo {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 5px 15px rgba(29, 78, 216, 0.3);
}

/* CTA */
.cta-section {
  padding: 6rem 0;
  background: var(--card-bg);
  text-align: center;
}

.cta-section h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn-facebook {
  background-color: #1877F2;
  color: white;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2);
  margin-top: 2rem;
  font-weight: 700;
}

.btn-facebook:hover {
  background-color: #166fe5;
  transform: translateY(-3px);
}

.fb-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .agency-nav {
    padding: 1rem 0;
  }
  
  .agency-nav .nav-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .agency-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .agency-links a {
    margin-left: 0;
    font-size: 0.9rem;
  }
  
  .agency-links .btn-outline {
    padding: 0.4rem 1.2rem !important;
  }
  
  .agency-hero {
    padding-top: 10rem;
    min-height: auto;
    padding-bottom: 4rem;
  }
  
  .agency-hero h1 {
    font-size: 2.25rem;
  }
  
  .pricing-price {
    font-size: 3rem;
  }
  
  .badge-recommended {
    font-size: 0.85rem;
    white-space: normal;
    width: 90%;
  }
}
