/* 
   ====================================================
   YazılımÇözüm - CSS Stylesheet
   ====================================================
*/

:root {
  /* Colors */
  --bg-color: #FFFFFF;
  --bg-section: #F8FAFC;
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --accent: #06B6D4;
  --accent-hover: #0891B2;
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  
  /* Layout & Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-float: 0 30px 60px -12px rgba(37, 99, 235, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.05);
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* Typography Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
}

.section-bg {
  background-color: var(--bg-section);
}

/* Container & Sections */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  font-size: 1rem;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background-color: white;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background-color: #F8FAFC;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 4rem; }

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}

.badge-accent {
  background-color: rgba(6, 182, 212, 0.1);
  color: var(--accent);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  z-index: 1000;
  transition: all var(--transition-fast);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.95);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

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

.logo i {
  color: var(--accent);
  font-size: 1.75rem;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: white;
  z-index: 2000;
  padding: 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-main);
}

.mobile-btn {
  margin-top: 1rem;
  text-align: center;
}

/* Hero Section */
.hero {
  padding-top: 10rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  border-radius: 50%;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
}

.avatars img:first-child {
  margin-left: 0;
}

.hero-trust span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-visual {
  flex: 1;
  position: relative;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, rgba(255,255,255,0) 60%);
  z-index: -1;
}

.hero-mockup {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

@keyframes float {
  0% { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0px); }
  50% { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-15px); }
  100% { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0px); }
}

/* Trust Indicators */
.trust-indicators {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 500;
}

/* How It Works Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.1);
}

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
}

.step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-muted);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
}

/* Ready Systems */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2.5rem;
}

.system-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.system-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.system-img-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}

.system-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.system-card:hover .system-img-wrapper img {
  transform: scale(1.1);
}

.system-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 5;
}

.system-card:hover .system-overlay {
  opacity: 1;
  visibility: visible;
}

.btn-examine {
  background: white;
  color: var(--primary);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-xl);
  font-size: 0.95rem;
  border: 2px solid white;
}

.system-card:hover .btn-examine {
  transform: translateY(0);
}

.btn-examine:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-examine i {
  font-size: 1.2rem;
}

.placeholder-gradient {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: var(--text-light);
  font-size: 4rem;
}
.template-1 { background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(6,182,212,0.1) 100%); color: var(--primary); }
.template-2 { background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(52,211,153,0.1) 100%); color: #10B981; }
.template-3 { background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(251,191,36,0.1) 100%); color: #F59E0B; }


.system-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.system-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.system-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex: 1;
}

.system-actions {
  display: flex;
  gap: 1rem;
}

.system-actions .btn {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: relative; /* All clickable area support */
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.portfolio-img {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.portfolio-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  /* Fixed 3 lines clamp */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.8rem; /* Keeps box size fixed even for short texts */
}

/* Entire card link overlay */
.portfolio-item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.tech-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card i.ph-quotes {
  font-size: 3rem;
  color: rgba(6, 182, 212, 0.15);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

.testimonial-card p {
  color: var(--text-main);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Why Choose Us */
.why-us-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.why-content {
  flex: 1;
}

.why-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-content > p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-list li {
  display: flex;
  gap: 1.5rem;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.why-list h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.why-list p {
  color: var(--text-muted);
}

.why-visual {
  flex: 1;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  width: 160px;
}

.feature-card i {
  font-size: 2.5rem;
}

.f1 {
  top: 10%;
  left: 10%;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  color: var(--primary);
}

.f2 {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 3;
  animation: float 6s ease-in-out infinite 1s;
  color: var(--accent);
}

.f3 {
  bottom: 10%;
  left: 20%;
  z-index: 1;
  animation: float 7s ease-in-out infinite 2s;
  color: #10B981;
}

/* Contact Section */
.contact-layout {
  display: flex;
  gap: 4rem;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-info {
  flex: 1;
  background: var(--text-main);
  color: white;
  padding: 4rem;
}

.contact-info h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent);
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.contact-item strong {
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-form-wrapper {
  flex: 1.2;
  padding: 4rem 4rem 4rem 0;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--bg-section);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

/* Footer */
.footer {
  background-color: white;
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-muted);
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
}

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

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-section);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.25rem;
}

.social-icons a:hover {
  background: var(--primary);
  color: white;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { flex-direction: column; }
  .contact-info { padding: 3rem; }
  .contact-form-wrapper { padding: 3rem; }
  .why-us-layout { flex-direction: column; }
  .why-visual { height: 300px; width: 100%; margin-top: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .hero-container { flex-direction: column; text-align: center; }
  .hero-subtext { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; margin-top: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2.5rem; }
  .systems-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-layout { grid-template-columns: 1fr; }
  .btn-large { width: 100%; }
}


/* Product Card Enhancements */
.system-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.system-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
}

.system-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 3rem;
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(0);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-modal {
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--text-main);
}

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

.modal-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--text-muted);
}

.lead-form .form-group {
  margin-bottom: 1.5rem;
}

.lead-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.lead-form input, .lead-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.lead-form input:focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 2500;
  font-weight: 700;
  transition: all var(--transition-normal);
  animation: pulse 2s infinite;
}

.whatsapp-float i {
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
  color: white;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 1rem;
    border-radius: 50%;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}


/* WhatsApp Enhanced Styles */
.btn-whatsapp {
    background-color: #25D366 !important;
    color: white !important;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.system-actions {
    gap: 0.5rem !important;
}

.system-actions .btn-whatsapp {
    padding: 0.6rem;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-actions .btn-whatsapp i {
    font-size: 1.25rem;
}


/* Conversion Optimization Styles */
.badge-limited {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 10;
    animation: flash-pulse 2s infinite;
}

@keyframes flash-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

.price-starts {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 4px;
}

/* New CTA Section V2 */
.cta-v2 {
    background: #0F172A;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    margin: 4rem 0;
}

.cta-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-v2-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-v2-content h2 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-v2-content p {
    color: #94A3B8;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-v2-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .cta-v2-content h2 { font-size: 2.5rem; }
    .cta-v2-actions { flex-direction: column; }
    .cta-v2-actions .btn { width: 100%; }
}

/* --- Why Us Page Styles --- */
.why-us-hero { padding-top: 8rem; }

.trust-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.main-trust-icon {
    font-size: 15rem;
    color: var(--primary);
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.2));
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.floating-badge i { color: var(--accent); font-size: 1.25rem; }

.f1 { top: 10%; right: 10%; animation-delay: 0s; }
.f2 { bottom: 20%; right: 5%; animation-delay: 1s; }
.f3 { top: 30%; left: 0%; animation-delay: 2s; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.process-steps-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.process-step-v2 {
    flex: 1;
    text-align: center;
}

.step-num-v2 {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    margin-bottom: -1.5rem;
}

.step-content h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-main); }
.step-content p { color: var(--text-muted); }

.step-connector {
    width: 100px;
    height: 2px;
    background: var(--border-color);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.stat-item { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-count { font-size: 3.5rem; font-weight: 800; color: var(--primary); }
.stat-desc { font-size: 1.125rem; font-weight: 600; color: var(--text-muted); }

.comparison-card {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-grid { width: 100%; }

.comparison-header, .comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-header { background: var(--bg-section); font-weight: 800; color: var(--text-main); }

.col-feature, .col-us, .col-others {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
}

.col-us { justify-content: center; text-align: center; }
.col-others { justify-content: center; text-align: center; color: var(--text-light); }

.highlight { background: rgba(37, 99, 235, 0.03); color: var(--primary) !important; font-weight: 700; }

.col-us i { color: #10B981; font-size: 1.25rem; margin-right: 0.5rem; }
.col-others i { color: #EF4444; font-size: 1.25rem; margin-right: 0.5rem; }

.final-cta { padding: 6rem 0; }
.cta-card {
    background: var(--text-main);
    color: white;
    padding: 5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.cta-card h2 { color: white; font-size: 3rem; margin-bottom: 1.5rem; }
.cta-card p { color: var(--text-light); font-size: 1.25rem; margin-bottom: 3rem; }
.cta-actions { display: flex; justify-content: center; gap: 2rem; }

@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid-v2 { gap: 2rem; }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .process-steps-v2 { flex-direction: column; gap: 4rem; }
    .step-connector { display: none; }
    .stats-grid-v2 { grid-template-columns: 1fr; }
    .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: 0.875rem; }
    .col-feature, .col-us, .col-others { padding: 1rem; }
    .cta-actions { flex-direction: column; gap: 1rem; }
    .cta-card { padding: 3rem 1.5rem; }
}



/* Utility Classes */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.hidden { display: none; }
@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-grid { display: grid; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md-inline { display: inline; }
  .md-block { display: block; }
}

@media (min-width: 768px) {
  .md-hidden { display: none !important; }
}


/* Comprehensive Utility Library */
/* Spacing */
.m-0 { margin: 0; } .m-1 { margin: 0.25rem; } .m-2 { margin: 0.5rem; } .m-4 { margin: 1rem; } .m-6 { margin: 1.5rem; } .m-8 { margin: 2rem; } .m-10 { margin: 2.5rem; } .m-12 { margin: 3rem; } .m-16 { margin: 4rem; } .m-20 { margin: 5rem; } .m-24 { margin: 6rem; }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; } .mt-20 { margin-top: 5rem; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; } .mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; } .mb-20 { margin-bottom: 5rem; } .mb-24 { margin-bottom: 6rem; }
.p-1 { padding: 0.25rem; } .p-2 { padding: 0.5rem; } .p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; } .p-10 { padding: 2.5rem; } .p-12 { padding: 3rem; } .p-16 { padding: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; } .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .px-8 { padding-left: 2rem; padding-right: 2rem; } .px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .py-4 { padding-top: 1rem; padding-bottom: 1rem; } .py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; } .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; } .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Backgrounds */
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-900 { background-color: #0f172a; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-500 { background-color: #22c55e; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-white-5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }

/* Text Colors */
.text-white { color: #ffffff; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-blue-400 { color: #60a5fa; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }

/* Borders & Radius */
.border { border: 1px solid #e2e8f0; }
.border-2 { border-width: 2px; }
.border-t { border-top: 1px solid #e2e8f0; }
.border-y { border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.border-slate-50 { border-color: #f8fafc; }
.border-slate-100 { border-color: #f1f5f9; }
.border-blue-100 { border-color: #dbeafe; }
.border-blue-200 { border-color: #bfdbfe; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Layout Helpers */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.shrink-0 { flex-shrink: 0; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

/* Typography */
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-none { line-height: 1; }
.leading-snug { line-height: 1.375; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.italic { font-style: italic; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-3xl { box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3); }

/* Responsive Utilities */
@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-grid { display: grid; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md-block { display: block; }
  .md-inline { display: inline; }
  .md-py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}
@media (min-width: 1024px) {
  .lg-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}


/* Specific Component Utilities */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-blue-600 { --tw-gradient-from: #2563eb; --tw-gradient-to: rgb(37 99 235 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-blue-700 { --tw-gradient-to: #1d4ed8; }
.hover-translate-y-1:hover { transform: translateY(-0.25rem); }
.active-scale-95:active { transform: scale(0.95); }
.shadow-3xl { box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3); }

/* --- Premium Social Media Buttons --- */
.social-icons, .social-icons-large {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    text-decoration: none !important;
}

.social-btn:hover {
    transform: translateY(-5px);
    color: white !important;
    border-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.social-btn.linkedin:hover { background-color: #0077b5; }
.social-btn.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-btn.twitter:hover { background-color: #000000; }
.social-btn.github:hover { background-color: #333333; }
.social-btn.facebook:hover { background-color: #1877f2; }

/* Large version for contact page */
.social-icons-large .social-btn {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
}

/* --- Modern SaaS-Style Legal Content --- */
.legal-content-card {
    background: white;
    border-radius: 2.5rem;
    padding: 5rem 6rem;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.legal-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.legal-prose {
    font-size: 1.15rem;
    line-height: 2.0; /* SaaS documentation style airy feel */
    color: var(--text-muted);
    font-weight: 400;
}

.legal-intro {
    font-size: 1.4rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 5rem;
}

.legal-prose h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-prose h2 i {
    color: var(--primary);
    opacity: 0.8;
}

.legal-item-box {
    background: transparent;
    padding: 0 0 0 2rem;
    border-radius: 0;
    border: none;
    border-left: 2px solid var(--border-color);
    margin: 3rem 0;
    transition: border-color 0.3s ease;
}

.legal-item-box:hover {
    border-left-color: var(--primary);
}

.legal-prose p {
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.legal-prose ul {
    margin: 2rem 0;
    list-style: none;
    padding: 0;
}

.legal-prose ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.legal-prose ul li::before {
    content: '\ec0b'; /* Phosphorus check icon placeholder or just icon */
    font-family: "Phosphor";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
    font-size: 1.25rem;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--bg-section);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

@media (max-width: 991px) {
    .legal-content-card { padding: 3rem 2rem; border-radius: 1.5rem; }
}

@media (max-width: 768px) {
    .legal-prose h2 { font-size: 1.5rem; }
    .legal-intro { font-size: 1.2rem; }
    .legal-item-box { padding-left: 1.5rem; }
}

