
/* Base & Variables */
.pf-ai-section-fullwidth {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  position: relative;
}

.pf-ai-section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes pf-ai-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pf-ai-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.1); }
}

@keyframes pf-ai-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pf-ai-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.pf-ai-hero {
  background: linear-gradient(135deg, #508846 0%, #0b245c 50%, #508846 100%);
  background-size: 200% 200%;
  animation: pf-ai-gradient-shift 15s ease infinite;
  padding: 120px 0 100px;
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
}

.pf-ai-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: pf-ai-pulse 8s ease-in-out infinite;
}

.pf-ai-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pf-ai-float 10s ease-in-out infinite;
}

.pf-ai-year {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.pf-ai-title {
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.2;
}

.pf-ai-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 600px;
}

.pf-ai-hero-shape {
  width: 200px;
  height: 200px;
  background: rgba(243, 84, 30, 0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  position: relative;
  animation: pf-ai-float 6s ease-in-out infinite;
  margin-left: auto;
}

/* Screenshot Section */
.pf-ai-screenshot {
  padding: 40px 0 80px;
  position: relative;
}

.pf-ai-browser-mockup {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(11, 36, 92, 0.15);
  overflow: hidden;
  position: relative;
  border: 1px solid #e0e0e0;
  animation: pf-ai-fade-up 0.8s ease-out;
}

.pf-ai-browser-mockup::before {
  content: '';
  display: block;
  height: 40px;
  background: linear-gradient(to bottom, #f5f5f5, #e8e8e8);
  border-bottom: 1px solid #d0d0d0;
  position: relative;
}

.pf-ai-browser-mockup::after {
  content: '● ● ●';
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 12px;
  color: #949c9e;
  letter-spacing: 5px;
}

/* Project Info */
.pf-ai-info {
  padding: 60px 0;
}

.pf-ai-content {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #586782;
}

.pf-ai-content p {
  margin-bottom: 24px;
}

.pf-ai-content strong {
  color: #2e2e2e;
  font-weight: 500;
}

.pf-ai-content ul {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

.pf-ai-content li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

.pf-ai-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #508846;
  border-radius: 50%;
}

.pf-ai-meta {
  background: #eaf6f8;
  padding: 30px;
  border-radius: 10px;
  position: sticky;
  top: 30px;
}

.pf-ai-meta h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #2e2e2e;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Tags Styling */
.pf-ai-tag-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.pf-ai-tag-list li {
  display: inline-block;
  margin: 0 8px 8px 0;
}

.pf-ai-tag-list a {
  display: inline-block;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #58b8cb;
  border-radius: 25px;
  color: #0b245c;
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.pf-ai-tag-list a:hover {
  background: #58b8cb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 184, 203, 0.3);
}

.pf-ai-meta h4 {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #949c9e;
  margin: 20px 0 10px;
}

.pf-ai-btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #508846;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease-out;
  border: 2px solid #508846;
  text-align: center;
}

.pf-ai-btn-primary:hover {
  background: transparent;
  color: #508846;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(80, 136, 70, 0.3);
  text-decoration: none;
}

/* Color Palette */
.pf-ai-colors {
  background: #eaf6f8;
  padding: 80px 0;
  margin: 60px 0;
}

.pf-ai-section-title {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  color: #2e2e2e;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 300;
}

.pf-ai-color-card {
  height: 200px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-out;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pf-ai-color-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.pf-ai-color-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  transition: all 0.5s ease-out;
}

.pf-ai-color-card:hover::before {
  top: -30%;
  right: -30%;
}

.pf-ai-color-green {
  background: #508846;
}

.pf-ai-color-blue {
  background: #0b245c;
}

.pf-ai-color-name {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}

.pf-ai-color-hex {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 2;
}

/* Features Section */
.pf-ai-features {
  padding: 60px 0;
}

.pf-ai-feature-grid {
  margin-top: 40px;
}

.pf-ai-feature-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 35px;
  height: 100%;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #508846;
  transition: all 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.pf-ai-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(80, 136, 70, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.pf-ai-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(11, 36, 92, 0.1);
  border-left-color: #f3541e;
}

.pf-ai-feature-card:hover::before {
  opacity: 1;
}

.pf-ai-feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
  color: #508846;
  transition: color 0.3s ease-out;
}

.pf-ai-feature-card:hover .pf-ai-feature-icon {
  color: #f3541e;
  animation: pf-ai-float 2s ease-in-out infinite;
}

.pf-ai-feature-title {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #2e2e2e;
  margin-bottom: 15px;
}

.pf-ai-feature-text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #586782;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.pf-ai-cta {
  background: linear-gradient(135deg, #0b245c 0%, #508846 100%);
  padding: 100px 0;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pf-ai-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.pf-ai-cta h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.pf-ai-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.pf-ai-btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease-out;
  border: 2px solid #ffffff;
  cursor: pointer;
}

.pf-ai-btn-secondary:hover {
  background: #ffffff;
  color: #0b245c;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1199px) {
  .pf-ai-title { font-size: 42px; }
  .pf-ai-hero { padding: 100px 0 80px; }
}

@media (max-width: 991px) {
  .pf-ai-title { font-size: 36px; }
  .pf-ai-subtitle { font-size: 18px; }
  .pf-ai-hero-shape { display: none; }
  .pf-ai-section-title { font-size: 28px; }
  .pf-ai-cta h2 { font-size: 30px; }
  .pf-ai-feature-card { margin-bottom: 20px; }
}

@media (max-width: 767px) {
  .pf-ai-hero { padding: 80px 0 60px; }
  .pf-ai-title { font-size: 28px; }
  .pf-ai-section-title { font-size: 24px; }
  .pf-ai-color-card { margin-bottom: 20px; }
  .pf-ai-meta { margin-top: 40px; position: static; }
  .pf-ai-cta { padding: 60px 0; }
  .pf-ai-cta h2 { font-size: 24px; }
}

@media (max-width: 575px) {
  .pf-ai-hero { padding: 60px 0 40px; }
  .pf-ai-title { font-size: 24px; }
  .pf-ai-year { font-size: 12px; }
  .pf-ai-subtitle { font-size: 16px; }
  .pf-ai-btn-primary, .pf-ai-btn-secondary {
    width: 100%;
    text-align: center;
  }
  .pf-ai-cta-buttons { flex-direction: column; }
}
