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

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

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

@keyframes pf-ai-pulse-soft {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); }
}

@keyframes pf-ai-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pf-ai-leaf-sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* Typography */
.pf-ai-hero-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pf-ai-hero-year {
  font-family: 'Roboto Mono', monospace;
  color: #9ac955;
  font-size: 1.2rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid #9ac955;
  border-radius: 25px;
  margin-bottom: 1.5rem;
}

.pf-ai-hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.pf-ai-section-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #005c7d;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.pf-ai-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #9ac955;
  border-radius: 2px;
}

.pf-ai-body-text {
  font-family: 'Roboto', sans-serif;
  color: #586782;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Hero Section */
.pf-ai-hero {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: linear-gradient(135deg, #005c7d 0%, #004a63 50%, #9ac955 100%);
  background-size: 400% 400%;
  animation: pf-ai-gradient-shift 12s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  margin-bottom: 80px;
}

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

.pf-ai-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
}

.pf-ai-hero-blob--1 {
  width: 400px;
  height: 400px;
  background: #9ac955;
  top: -100px;
  right: -100px;
  animation: pf-ai-float 8s ease-in-out infinite;
}

.pf-ai-hero-blob--2 {
  width: 300px;
  height: 300px;
  background: #005c7d;
  bottom: -50px;
  left: -50px;
  animation: pf-ai-float-reverse 10s ease-in-out infinite;
}

.pf-ai-hero-url {
  font-family: 'Roboto Mono', monospace;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid #9ac955;
  padding-bottom: 2px;
  transition: all 0.3s ease-out;
  display: inline-block;
  margin-top: 1rem;
}

.pf-ai-hero-url:hover {
  color: #9ac955;
  border-bottom-color: #ffffff;
  transform: translateX(5px);
}

/* Screenshot Section */
.pf-ai-screenshot-section {
  margin-bottom: 80px;
}

.pf-ai-browser-frame {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 92, 125, 0.15);
  padding: 20px;
  position: relative;
  transition: all 0.5s ease-out;
}

.pf-ai-browser-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 92, 125, 0.25);
}

.pf-ai-browser-header {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaf6f8;
}

.pf-ai-browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #eaf6f8;
  transition: all 0.3s ease-out;
}

.pf-ai-browser-frame:hover .pf-ai-browser-dot:nth-child(1) { background: #9ac955; }
.pf-ai-browser-frame:hover .pf-ai-browser-dot:nth-child(2) { background: #f3541e; }
.pf-ai-browser-frame:hover .pf-ai-browser-dot:nth-child(3) { background: #005c7d; }

.pf-ai-screenshot-wrapper {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eaf6f8;
  background: #f8f9fa;
  min-height: 400px;
  position: relative;
}

/* Project Info Section */
.pf-ai-info-section {
  margin-bottom: 80px;
}

.pf-ai-info-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px;
  height: 100%;
  border: 1px solid rgba(0, 92, 125, 0.1);
  transition: all 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.pf-ai-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #005c7d;
  transition: all 0.5s ease-out;
}

.pf-ai-info-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.pf-ai-info-card:hover {
  box-shadow: 0 2px 15px rgba(88, 184, 203, 0.3);
  transform: translateY(-5px);
}

.pf-ai-info-card--solution::before {
  background: #9ac955;
}

.pf-ai-info-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  color: #949c9e;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.pf-ai-info-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  color: #2e2e2e;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Color Palette Section */
.pf-ai-colors-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: #eaf6f8;
  padding: 80px 0;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.pf-ai-colors-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(154,201,85,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.pf-ai-colors-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.pf-ai-color-swatch {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(88, 184, 203, 0.1);
  transition: all 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.pf-ai-color-swatch:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 92, 125, 0.15);
}

.pf-ai-color-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.5s ease-out;
}

.pf-ai-color-swatch:hover .pf-ai-color-circle {
  transform: scale(1.1);
  animation: pf-ai-leaf-sway 3s ease-in-out infinite;
}

.pf-ai-color-circle--blue { background: #005c7d; }
.pf-ai-color-circle--green { background: #9ac955; }

.pf-ai-color-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #2e2e2e;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.pf-ai-color-hex {
  font-family: 'Roboto Mono', monospace;
  color: #949c9e;
  font-size: 0.9rem;
  background: #f8f9fa;
  padding: 0.3rem 0.8rem;
  border-radius: 25px;
  display: inline-block;
}

/* Features Section */
.pf-ai-features-section {
  margin-bottom: 80px;
}

.pf-ai-feature-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(0, 92, 125, 0.1);
  transition: all 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.pf-ai-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #005c7d 0%, #9ac955 100%);
  transition: all 0.5s ease-out;
  z-index: 0;
}

.pf-ai-feature-card:hover::after {
  height: 100%;
  opacity: 0.05;
}

.pf-ai-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgba(88, 184, 203, 0.3);
  border-color: #9ac955;
}

.pf-ai-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #005c7d 0%, #004a63 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-family: 'Roboto Mono', monospace;
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.pf-ai-feature-card:hover .pf-ai-feature-icon {
  background: #9ac955;
  transform: rotate(10deg) scale(1.1);
}

.pf-ai-feature-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  color: #2e2e2e;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.pf-ai-feature-text {
  font-family: 'Roboto', sans-serif;
  color: #586782;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* Taxonomies Section */
.pf-ai-taxonomies-section {
  margin-bottom: 80px;
  padding: 40px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #eaf6f8;
}

.pf-ai-taxonomies-section h4 {
  font-family: 'Roboto', sans-serif;
  color: #005c7d;
  font-size: 1.2rem;
  margin-bottom: 15px;
  margin-top: 30px;
  font-weight: 700;
}

.pf-ai-taxonomies-section h4:first-child {
  margin-top: 0;
}

.pf-ai-tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pf-ai-tag-list li {
  margin: 0;
}

.pf-ai-tag-list a {
  font-family: 'Roboto Mono', monospace;
  color: #586782;
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid #eaf6f8;
  border-radius: 25px;
  display: inline-block;
  transition: all 0.3s ease-out;
  font-size: 0.9rem;
  background: #ffffff;
}

.pf-ai-tag-list a:hover {
  background: #005c7d;
  color: #ffffff;
  border-color: #005c7d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 92, 125, 0.2);
}

/* CTA Section */
.pf-ai-cta-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: linear-gradient(135deg, #2e2e2e 0%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pf-ai-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 92, 125, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(154, 201, 85, 0.3) 0%, transparent 50%);
  animation: pf-ai-pulse-soft 6s ease-in-out infinite;
}

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

.pf-ai-cta-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.pf-ai-cta-text {
  font-family: 'Roboto', sans-serif;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pf-ai-btn {
  font-family: 'Roboto', sans-serif;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: all 0.3s ease-out;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  margin: 0 10px 10px;
}

.pf-ai-btn--primary {
  background: #9ac955;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(154, 201, 85, 0.4);
}

.pf-ai-btn--primary:hover {
  background: #8ab84a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(154, 201, 85, 0.5);
  color: #ffffff;
  text-decoration: none;
}

.pf-ai-btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.pf-ai-btn--secondary:hover {
  background: #ffffff;
  color: #2e2e2e;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .pf-ai-hero-title { font-size: 2.8rem; }
}

@media (max-width: 991px) {
  .pf-ai-hero { padding: 80px 0; }
  .pf-ai-hero-title { font-size: 2.5rem; }
  .pf-ai-section-title { font-size: 2rem; }
  .pf-ai-info-card { margin-bottom: 30px; }
}

@media (max-width: 767px) {
  .pf-ai-hero-title { font-size: 2rem; }
  .pf-ai-hero-subtitle { font-size: 1.2rem; }
  .pf-ai-feature-card { margin-bottom: 30px; }
  .pf-ai-cta-title { font-size: 1.8rem; }
  .pf-ai-btn { display: block; width: 100%; max-width: 300px; margin: 0 auto 15px; }
}

@media (max-width: 575px) {
  .pf-ai-hero { padding: 60px 0; }
  .pf-ai-hero-title { font-size: 1.8rem; }
  .pf-ai-color-swatch { margin-bottom: 20px; }
  .pf-ai-info-card { padding: 25px; }
  .pf-ai-taxonomies-section { padding: 25px; }
}
