@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- CUSTOM VARIABLES & STYLING TOKENS --- */
:root {
  --bg-dark: #060816;
  --bg-deep: #0a0d24;
  --bg-card: rgba(255, 255, 255, 0.03);

  --primary: #06b6d4;
  /* Cyan */
  --purple: #a855f7;
  /* Purple */
  --accent: #3b82f6;
  /* Blue */

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);

  --border-light: rgba(255, 255, 255, 0.1);
  --grad-cyan-purple: linear-gradient(135deg, #06b6d4 0%, #a855f7 100%);
  --grad-card-overlay: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);

  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --glass-filter: blur(20px) saturate(180%);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  background-color: var(--bg-dark);
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--grad-cyan-purple);
}

/* --- AMBIENT GLOW BACKDROPS --- */
.ambient-glow-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(168, 85, 247, 0.15);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.15);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- CONTAINER & UTILITIES --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headings);
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--grad-cyan-purple);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  transition: var(--transition-smooth);
}

/* Text Gradients */
.text-gradient {
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- HEADER / NAVIGATION --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 8, 22, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  padding: 80px 0 100px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.hero-stat-card {
  padding: 20px;
  text-align: left;
}

.hero-stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-stat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Hero Animated Image */
.hero-main-image {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  animation: floatImage 6s ease-in-out infinite;
  object-fit: cover;
  height: 570px;
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  }

  50% {
    transform: translateY(-20px);
    box-shadow: 0 50px 80px rgba(6, 182, 212, 0.3);
  }

  100% {
    transform: translateY(0px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  }
}

/* --- SERVICES SECTION --- */
.services {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-tag {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

.section-header p {
  max-width: 600px;
  margin: 16px auto 0 auto;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 30px;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(6, 182, 212, 0.2);
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad-card-overlay);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
  background: var(--grad-cyan-purple);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
  border-color: transparent;
}

.service-card-icon svg {
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon svg {
  transform: scale(1.1);
  stroke: #fff;
}

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

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Highlighted Service Card (eBook Publishing & Marketing) */
.service-card.highlighted {
  border-color: rgba(168, 85, 247, 0.45);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, rgba(236, 72, 153, 0.04) 100%);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card.highlighted::before {
  content: 'EXCLUSIVE';
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
  z-index: 2;
}

.service-card.highlighted .service-card-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(236, 72, 153, 0.3) 100%);
  border-color: rgba(236, 72, 153, 0.3);
}

/* Hover State for Highlighted Card */
.service-card.highlighted:hover {
  border-color: #ec4899;
  box-shadow: 0 20px 45px rgba(236, 72, 153, 0.25);
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12) 0%, rgba(236, 72, 153, 0.08) 100%);
}

.service-card.highlighted:hover .service-card-icon {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.4);
}

/* --- ABOUT SECTION --- */
.about {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-counter-card {
  padding: 20px;
  text-align: center;
}

.about-counter-card .count-num {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.about-counter-card .count-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* About visual layout */
.about-visual {
  position: relative;
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-light);
}

.about-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-card-overlay);
  opacity: 0.7;
}

.about-visual-frame {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-blur {
  width: 288px;
  height: 288px;
  border-radius: 50%;
  background: var(--grad-cyan-purple);
  filter: blur(60px);
  opacity: 0.3;
  position: absolute;
}

.about-mockup-browser {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 400px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
}

.browser-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot.red {
  background: #f87171;
}

.browser-dot.yellow {
  background: #fbbf24;
}

.browser-dot.green {
  background: #4ade80;
}

.browser-layout-item {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: 16px;
}

.browser-layout-visual {
  height: 144px;
  border-radius: 16px;
  background: var(--grad-card-overlay);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.browser-layout-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.browser-layout-subitem {
  height: 80px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

/* --- BRANDS SECTION --- */
.brands {
  padding: 100px 0;
}

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

.brand-card {
  padding: 28px;
  transition: var(--transition-smooth);
}

.brand-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--purple);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 45px rgba(168, 85, 247, 0.15);
}

.brand-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--grad-card-overlay);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.brand-card:hover .brand-card-icon {
  background: var(--grad-cyan-purple);
  transform: scale(1.1) rotate(-5deg);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.brand-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.brand-title-row h3 {
  font-size: 1.5rem;
}

.brand-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.brand-card p {
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- PROCESS SECTION --- */
.process {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.process-card {
  position: relative;
  padding: 32px;
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 45px rgba(6, 182, 212, 0.15);
}

.process-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
  transition: var(--transition-smooth);
}

.process-card:hover .process-number {
  color: rgba(6, 182, 212, 0.2);
  transform: scale(1.1) translate(-5px, -5px);
}

.process-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad-card-overlay);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.process-card:hover .process-card-icon {
  background: var(--grad-cyan-purple);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

.process-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.process-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- PORTFOLIO SECTION --- */
.portfolio {
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.portfolio-card {
  border-radius: 32px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.portfolio-visual-box {
  height: 288px;
  background: var(--grad-card-overlay);
  overflow: hidden;
  position: relative;
}

.portfolio-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-visual-box img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: 32px;
}

.portfolio-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.portfolio-meta-row h3 {
  font-size: 1.5rem;
}

.portfolio-meta-row span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.portfolio-card-content p {
  line-height: 1.6;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
}

.testimonial-avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-card-overlay);
}

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

.testimonial-info h4 {
  font-size: 1.1rem;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-card p.quote-text {
  font-size: 1rem;
  line-height: 1.7;
}

/* --- PRICING SECTION --- */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(6, 182, 212, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.06) translateY(-8px);
  box-shadow: 0 35px 70px rgba(6, 182, 212, 0.25);
}

.pricing-card h3 {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.pricing-amt {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-headings);
  margin-bottom: 32px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.pricing-card .btn {
  width: 100%;
}

/* --- CALL TO ACTION --- */
.cta {
  padding: 100px 0;
}

.cta-card {
  border-radius: 40px;
  overflow: hidden;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-size: 1.15rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border-light);
  padding: 80px 0 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-input-row {
  display: flex;
  gap: 12px;
}

.footer-input {
  flex-grow: 1;
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #fff;
  outline: none;
}

.footer-input::placeholder {
  color: var(--text-muted);
}

.footer-column .btn {
  padding: 0 24px;
  border-radius: 16px;
}

/* --- EBOOK PUBLISHING SUITE SECTION --- */
.publishing {
  padding: 100px 0;
  position: relative;
}

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

.publishing-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, rgba(236, 72, 153, 0.04) 100%);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
  transition: var(--transition-smooth);
}

.publishing-card::before {
  content: 'AUTHOR SUITE';
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
  z-index: 2;
}

.publishing-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(236, 72, 153, 0.3) 100%);
  border: 1px solid rgba(236, 72, 153, 0.3);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.publishing-card:hover {
  border-color: #ec4899;
  box-shadow: 0 20px 45px rgba(236, 72, 153, 0.25);
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12) 0%, rgba(236, 72, 153, 0.08) 100%);
}

.publishing-card:hover .publishing-card-icon {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.4);
}

.publishing-card-icon svg {
  transition: var(--transition-smooth);
}

.publishing-card:hover .publishing-card-icon svg {
  transform: scale(1.1);
  stroke: #fff;
}

.publishing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.publishing-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- GET A QUOTE SECTION --- */
.quote {
  padding: 100px 0;
  position: relative;
}

.quote-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 32px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.05) 0%, rgba(168, 85, 247, 0.03) 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.form-group select option {
  background: var(--bg-dark);
  color: #fff;
}

/* --- RESPONSIVENESS BREAKPOINTS --- */
@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 30px;
  }

  .publishing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 24px;
  }

  .quote-form-container {
    padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-stat-card {
    text-align: center;
  }

  .about-content h2 {
    font-size: 2.25rem;
  }

  .about-counters {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2.25rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quote-form-container {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-input-row {
    flex-direction: column;
  }
}