.grantaura-grant-writing-page {
  --grantaura-primary: #5A3B8C;
  --grantaura-primary-light: #7650A9;
  --grantaura-primary-dark: #472D6F;
  --grantaura-secondary: #FFA366;
  --grantaura-secondary-light: #FFB888;
  --grantaura-secondary-dark: #FF8544;
  --grantaura-success: #10B981;
  --grantaura-warning: #F59E0B;
  --grantaura-danger: #EF4444;
  --grantaura-text-dark: #1F2937;
  --grantaura-text-light: #6B7280;
  --grantaura-background: #F9FAFB;
  --grantaura-white: #FFFFFF;
  --grantaura-gray-50: #F9FAFB;
  --grantaura-gray-100: #F3F4F6;
  --grantaura-gray-200: #E5E7EB;
  --grantaura-gray-300: #D1D5DB;
  --grantaura-gray-400: #9CA3AF;
  --grantaura-gray-500: #6B7280;
  --grantaura-gray-600: #4B5563;
  --grantaura-gray-700: #374151;
  --grantaura-gray-800: #1F2937;
  --grantaura-gray-900: #111827;
  --grantaura-spacing-xs: 0.5rem;
  --grantaura-spacing-sm: 1rem;
  --grantaura-spacing-md: 2rem;
  --grantaura-spacing-lg: 4rem;
  --grantaura-spacing-xl: 6rem;
  --grantaura-border-radius-sm: 6px;
  --grantaura-border-radius: 8px;
  --grantaura-border-radius-lg: 12px;
  --grantaura-border-radius-xl: 16px;
  --grantaura-box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --grantaura-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --grantaura-box-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --grantaura-box-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --grantaura-transition: all 0.3s ease;
  --grantaura-transition-slow: all 0.5s ease;
  --grantaura-max-width: 1300px;
}

.grantaura-grant-writing-page img {
  max-width: 100%;
  height: auto;
}

/* Hero Section */
.grantaura-grant-writing-page .grantapp-hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--grantaura-primary-dark) 0%, var(--grantaura-primary) 100%);
  padding: 5rem 1.5rem;
  overflow: hidden;
  color: var(--grantaura-white);
}

.grantaura-grant-writing-page .grantapp-hero-container {
  max-width: var(--grantaura-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-hero-content {
  text-align: center;
}

.grantaura-grant-writing-page .grantapp-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--grantaura-white);
}

.grantaura-grant-writing-page .grantapp-hero-title-highlight {
  color: var(--grantaura-secondary);
  position: relative;
  display: inline-block;
}

.grantaura-grant-writing-page .grantapp-hero-title-highlight::after {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border: 2px dashed var(--grantaura-secondary-light);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  animation: rotate 20s linear infinite;
}

.grantaura-grant-writing-page .grantapp-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--grantaura-white);
}

.grantaura-grant-writing-page .grantapp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.grantaura-grant-writing-page .grantapp-hero-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--grantaura-border-radius);
  text-align: center;
  min-width: 120px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.grantaura-grant-writing-page .grantapp-hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--grantaura-secondary);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.grantaura-grant-writing-page .grantapp-hero-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.grantaura-grant-writing-page .grantapp-hero-cta {
  display: inline-block;
  background: var(--grantaura-secondary);
  color: var(--grantaura-primary-dark) !important;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--grantaura-border-radius);
  text-decoration: none !important;
  font-size: 1.1rem;
  transition: var(--grantaura-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.grantaura-grant-writing-page .grantapp-hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--grantaura-transition);
  z-index: -1;
}

.grantaura-grant-writing-page .grantapp-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.grantaura-grant-writing-page .grantapp-hero-cta:hover::after {
  left: 100%;
  transition: 0.7s;
}

.grantaura-grant-writing-page .grantapp-hero-image {
  margin-top: 3rem;
  text-align: center;
  position: relative;
}

.grantaura-grant-writing-page .grantapp-hero-image img {
  border-radius: var(--grantaura-border-radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.grantaura-grant-writing-page .grantapp-hero-badge {
  position: absolute;
  top: -20px;
  right: 10%;
  background: var(--grantaura-secondary);
  color: var(--grantaura-primary-dark);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  transform: rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: pulse 2s infinite;
}

.grantaura-grant-writing-page .grantapp-hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.grantaura-grant-writing-page .grantapp-hero-shape svg {
  position: relative;
  display: block;
  width: calc(140% + 1.3px);
  height: 65px;
}

.grantaura-grant-writing-page .grantapp-hero-shape .shape-fill {
  fill: var(--grantaura-white);
}

/* Services Section */
.grantaura-grant-writing-page .grantapp-services-section {
  padding: 5rem 1.5rem;
  background-color: var(--grantaura-white);
}

.grantaura-grant-writing-page .grantapp-services-container {
  max-width: var(--grantaura-max-width);
  margin: 0 auto;
}

.grantaura-grant-writing-page .grantapp-services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.grantaura-grant-writing-page .grantapp-services-subtitle {
  color: var(--grantaura-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantapp-services-title {
  font-size: 2.2rem;
  color: var(--grantaura-text-dark);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.grantaura-grant-writing-page .grantapp-services-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--grantaura-text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.grantaura-grant-writing-page .grantapp-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grantaura-grant-writing-page .grantapp-service-card {
  background: var(--grantaura-gray-50);
  border-radius: var(--grantaura-border-radius-lg);
  padding: 2rem;
  transition: var(--grantaura-transition);
  border: 1px solid var(--grantaura-gray-100);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.grantaura-grant-writing-page .grantapp-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--grantaura-box-shadow-lg);
  border-color: var(--grantaura-gray-200);
}

.grantaura-grant-writing-page .grantapp-service-icon {
  width: 60px;
  height: 60px;
  background: var(--grantaura-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--grantaura-border-radius);
  margin-bottom: 1.5rem;
}

.grantaura-grant-writing-page .grantapp-service-icon img {
  width: 35px;
  height: auto;
}

.grantaura-grant-writing-page .grantapp-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--grantaura-text-dark);
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantapp-service-description {
  color: var(--grantaura-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.grantaura-grant-writing-page .grantapp-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.grantaura-grant-writing-page .grantapp-service-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--grantaura-text-dark);
}

.grantaura-grant-writing-page .grantapp-service-list li::before {
  content: "\2713";
  color: var(--grantaura-success);
  margin-right: 0.5rem;
  font-weight: bold;
}

.grantaura-grant-writing-page .grantapp-service-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grantaura-grant-writing-page .grantapp-service-stat {
  font-size: 0.875rem;
  color: var(--grantaura-primary);
  font-weight: 600;
}

.grantaura-grant-writing-page .grantapp-services-cta {
  margin-top: 4rem;
  text-align: center;
}

.grantaura-grant-writing-page .grantapp-services-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grantaura-text-dark);
  margin-bottom: 1.5rem;
}

.grantaura-grant-writing-page .grantapp-services-cta-btn {
  display: inline-block;
  background: var(--grantaura-primary);
  color: var(--grantaura-white);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--grantaura-border-radius);
  text-decoration: none !important;
  font-size: 1.1rem;
  transition: var(--grantaura-transition);
}

.grantaura-grant-writing-page .grantapp-services-cta-btn:hover {
  background: var(--grantaura-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--grantaura-box-shadow);
}
/* Comparison Section */
.grantaura-grant-writing-page .grantapp-comparison-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom, var(--grantaura-gray-50), var(--grantaura-white));
  position: relative;
  overflow: hidden;
}

.grantaura-grant-writing-page .grantapp-comparison-container {
  max-width: var(--grantaura-max-width);
  margin: 0 auto;
}

.grantaura-grant-writing-page .grantapp-comparison-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-comparison-subtitle {
  color: var(--grantaura-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantapp-comparison-title {
  font-size: 2.2rem;
  color: var(--grantaura-text-dark);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.grantaura-grant-writing-page .grantapp-comparison-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--grantaura-text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.grantaura-grant-writing-page .grantapp-comparison-table {
  background: var(--grantaura-white);
  border-radius: var(--grantaura-border-radius-lg);
  box-shadow: var(--grantaura-box-shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-comparison-headers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grantaura-grant-writing-page .grantapp-comparison-header-cell {
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--grantaura-gray-100);
}

.grantaura-grant-writing-page .grantapp-comparison-header-cell.feature {
  background: var(--grantaura-gray-100);
  color: var(--grantaura-text-dark);
}

.grantaura-grant-writing-page .grantapp-comparison-header-cell.diy {
  background: var(--grantaura-gray-50);
  color: var(--grantaura-text-dark);
}

.grantaura-grant-writing-page .grantapp-comparison-header-cell.pro {
  background: var(--grantaura-primary);
  color: var(--grantaura-white);
}

.grantaura-grant-writing-page .grantapp-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--grantaura-gray-100);
}

.grantaura-grant-writing-page .grantapp-comparison-cell {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.grantaura-grant-writing-page .grantapp-comparison-cell.feature {
  background: var(--grantaura-gray-50);
  font-weight: 600;
  color: var(--grantaura-text-dark);
}

.grantaura-grant-writing-page .grantapp-comparison-cell.diy {
  color: var(--grantaura-text-light);
  position: relative;
}

.grantaura-grant-writing-page .grantapp-comparison-cell.pro {
  color: var(--grantaura-text-dark);
  background: rgba(90, 59, 140, 0.05);
  position: relative;
}

.grantaura-grant-writing-page .grantapp-comparison-cell.diy::before,
.grantaura-grant-writing-page .grantapp-comparison-cell.pro::before {
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.grantaura-grant-writing-page .grantapp-comparison-cell.diy.negative::before {
  content: "\2715";
  color: var(--grantaura-danger);
}

.grantaura-grant-writing-page .grantapp-comparison-cell.diy.neutral::before {
  content: '~';
  color: var(--grantaura-warning);
}

.grantaura-grant-writing-page .grantapp-comparison-cell.diy.positive::before {
  content: "\2713";
  color: var(--grantaura-success);
}

.grantaura-grant-writing-page .grantapp-comparison-cell.pro::before {
  content: "\2713";
  color: var(--grantaura-success);
  font-weight: bold;
}

.grantaura-grant-writing-page .grantapp-comparison-highlight {
  position: absolute;
  left: 0;
  width: 4px;
  top: 10%;
  height: 80%;
  background: var(--grantaura-primary);
  border-radius: 4px;
}

.grantaura-grant-writing-page .grantapp-comparison-cta {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-comparison-cta-btn {
  display: inline-block;
  background: var(--grantaura-primary);
  color: var(--grantaura-white) !important;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--grantaura-border-radius);
  text-decoration: none !important;
  font-size: 1.1rem;
  transition: var(--grantaura-transition);
  box-shadow: var(--grantaura-box-shadow);
}

.grantaura-grant-writing-page .grantapp-comparison-cta-btn:hover {
  background: var(--grantaura-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--grantaura-box-shadow-lg);
}

.grantaura-grant-writing-page .grantapp-comparison-blob {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(255, 163, 102, 0.1) 0%, rgba(255, 163, 102, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.grantaura-grant-writing-page .grantapp-comparison-blob-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(90, 59, 140, 0.07) 0%, rgba(90, 59, 140, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Packages Section */
.grantaura-grant-writing-page .grantaura-packages-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, var(--grantaura-background) 0%, var(--grantaura-gray-100) 100%);
  position: relative;
  overflow: hidden;
  max-width: var(--grantaura-max-width);
  margin: 0 auto;
}

.grantaura-grant-writing-page .grantaura-packages-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://grantaura.com/wp-content/uploads/2025/02/patterns-with-connection-7.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.grantaura-grant-writing-page .grantaura-packages-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.grantaura-grant-writing-page .grantaura-packages-badge {
  display: inline-block;
  background: var(--grantaura-primary-light);
  color: var(--grantaura-white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--grantaura-box-shadow-sm);
  transform: rotate(-2deg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.grantaura-grant-writing-page .grantaura-packages-header__title {
  color: var(--grantaura-text-dark);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.grantaura-grant-writing-page .grantaura-packages-header__subtitle {
  color: var(--grantaura-text-light);
  font-size: clamp(1rem, 3vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.grantaura-grant-writing-page .grantaura-packages-header__highlight {
  display: inline-block;
  position: relative;
  color: var(--grantaura-primary);
  font-weight: 700;
}

.grantaura-grant-writing-page .grantaura-packages-header__highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 30%;
  width: 100%;
  background-color: var(--grantaura-secondary-light);
  opacity: 0.3;
  z-index: -1;
}

.grantaura-grant-writing-page .grantaura-packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.grantaura-grant-writing-page .grantaura-package-card {
  background-color: var(--grantaura-white);
  border-radius: var(--grantaura-border-radius-lg);
  box-shadow: var(--grantaura-box-shadow);
  padding: 2.5rem;
  position: relative;
  transition: var(--grantaura-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.grantaura-grant-writing-page .grantaura-package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--grantaura-box-shadow-lg);
}

.grantaura-grant-writing-page .grantaura-package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--grantaura-primary) 0%, var(--grantaura-primary-light) 100%);
}

.grantaura-grant-writing-page .grantaura-package-card--basic::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 60px;
  height: 60px;
  background-image: url('https://grantaura.com/wp-content/uploads/2025/02/badge-with-abs-bg-10.webp');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  transform: rotate(20deg);
}

.grantaura-grant-writing-page .grantaura-package-card--premium {
  background-color: var(--grantaura-white);
  transform: translateY(-5px);
  border: 2px solid rgba(90, 59, 140, 0.1);
}

.grantaura-grant-writing-page .grantaura-package-card--premium::before {
  background: linear-gradient(90deg, var(--grantaura-secondary) 0%, var(--grantaura-secondary-dark) 100%);
  height: 10px;
}

.grantaura-grant-writing-page .grantaura-package-card--premium::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 70px;
  height: 70px;
  background-image: url('https://grantaura.com/wp-content/uploads/2025/02/trophy-png.webp');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  transform: rotate(15deg);
}

.grantaura-grant-writing-page .grantaura-package-card--premium:hover {
  transform: translateY(-10px);
}

.grantaura-grant-writing-page .grantaura-package-card--premium .grantaura-package-name,
.grantaura-grant-writing-page .grantaura-package-card--premium .grantaura-package-features__highlight {
  color: var(--grantaura-secondary-dark);
}

.grantaura-grant-writing-page .grantaura-package-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, var(--grantaura-secondary) 0%, var(--grantaura-secondary-dark) 100%);
  color: var(--grantaura-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--grantaura-box-shadow-sm);
}

.grantaura-grant-writing-page .grantaura-premium-button {
  background: linear-gradient(135deg, var(--grantaura-secondary) 0%, var(--grantaura-secondary-dark) 100%);
}

.grantaura-grant-writing-page .grantaura-premium-button:hover {
  background: linear-gradient(135deg, var(--grantaura-secondary-dark) 0%, var(--grantaura-secondary) 100%);
}

.grantaura-grant-writing-page .grantaura-package-header {
  margin-bottom: 1.5rem;
}

.grantaura-grant-writing-page .grantaura-package-name {
  color: var(--grantaura-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.grantaura-grant-writing-page .grantaura-package-tagline {
  color: var(--grantaura-text-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.grantaura-grant-writing-page .grantaura-package-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.grantaura-grant-writing-page .grantaura-package-price__amount {
  color: var(--grantaura-text-dark);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.grantaura-grant-writing-page .grantaura-package-price__currency {
  color: var(--grantaura-text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 0.25rem;
}

.grantaura-grant-writing-page .grantaura-package-price__period {
  color: var(--grantaura-text-light);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.grantaura-grant-writing-page .grantaura-package-description {
  color: var(--grantaura-text-light);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.grantaura-grant-writing-page .grantaura-package-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.grantaura-grant-writing-page .grantaura-package-features__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.grantaura-grant-writing-page .grantaura-package-features__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--grantaura-text-dark);
  font-size: 0.9375rem;
}

.grantaura-grant-writing-page .grantaura-package-features__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  color: var(--grantaura-primary);
}

.grantaura-grant-writing-page .grantaura-package-features__icon svg {
  width: 100%;
  height: 100%;
}

.grantaura-grant-writing-page .grantaura-package-features__text {
  line-height: 1.5;
}

.grantaura-grant-writing-page .grantaura-package-features__highlight {
  font-weight: 600;
  color: var(--grantaura-primary-dark);
}

.grantaura-grant-writing-page .grantaura-package-cta {
  text-align: center;
}

.grantaura-grant-writing-page .grantaura-package-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--grantaura-primary) 0%, var(--grantaura-primary-dark) 100%);
  color: var(--grantaura-white) !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--grantaura-border-radius);
  text-decoration: none;
  transition: var(--grantaura-transition);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--grantaura-box-shadow-sm);
}

.grantaura-grant-writing-page .grantaura-package-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--grantaura-box-shadow);
  background: linear-gradient(135deg, var(--grantaura-primary-dark) 0%, var(--grantaura-primary) 100%);
}

.grantaura-grant-writing-page .grantaura-package-button:active {
  transform: translateY(0);
}

.grantaura-grant-writing-page .grantaura-package-button::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: all 0.6s ease;
}

.grantaura-grant-writing-page .grantaura-package-button:hover::before {
  left: 100%;
}

.grantaura-grant-writing-page .grantaura-packages-additional {
  margin-top: 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--grantaura-border-radius-lg);
  box-shadow: var(--grantaura-box-shadow-sm);
}

.grantaura-grant-writing-page .grantaura-packages-additional__title {
  color: var(--grantaura-text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.grantaura-grant-writing-page .grantaura-packages-additional__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--grantaura-primary) 0%, var(--grantaura-secondary) 100%);
  border-radius: 3px;
}

.grantaura-grant-writing-page .grantaura-additional-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.grantaura-grant-writing-page .grantaura-additional-service {
  background-color: var(--grantaura-white);
  border-radius: var(--grantaura-border-radius);
  padding: 1.5rem;
  box-shadow: var(--grantaura-box-shadow-sm);
  transition: var(--grantaura-transition);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grantaura-grant-writing-page .grantaura-additional-service:hover {
  transform: translateY(-3px);
  box-shadow: var(--grantaura-box-shadow);
}

.grantaura-grant-writing-page .grantaura-additional-service__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantaura-additional-service__icon {
  width: 42px;
  height: 42px;
  margin-right: 1rem;
  padding: 8px;
  border-radius: var(--grantaura-border-radius);
  background-color: rgba(90, 59, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.grantaura-grant-writing-page .grantaura-additional-service__icon svg {
  width: 100%;
  height: 100%;
  color: var(--grantaura-primary);
}

.grantaura-grant-writing-page .grantaura-additional-service__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--grantaura-text-dark);
  margin: 0;
}

.grantaura-grant-writing-page .grantaura-additional-service__price {
  font-size: 0.875rem;
  color: var(--grantaura-text-light);
  margin-top: 0.25rem;
}

.grantaura-grant-writing-page .grantaura-additional-service__description {
  font-size: 0.875rem;
  color: var(--grantaura-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex-grow: 1;
}

.grantaura-grant-writing-page .grantaura-additional-service__button {
  display: inline-block;
  background-color: transparent;
  color: var(--grantaura-primary) !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--grantaura-border-radius);
  text-decoration: none;
  transition: var(--grantaura-transition);
  border: 1px solid var(--grantaura-primary);
  cursor: pointer;
  text-align: center;
}

.grantaura-grant-writing-page .grantaura-additional-service__button:hover {
  background-color: var(--grantaura-primary);
  color: var(--grantaura-white) !important;
}

.grantaura-grant-writing-page .grantaura-packages-consultation {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--grantaura-primary-light) 0%, var(--grantaura-primary) 100%);
  border-radius: var(--grantaura-border-radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--grantaura-box-shadow);
  z-index: 1;
}

.grantaura-grant-writing-page .grantaura-packages-consultation::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url('https://grantaura.com/wp-content/uploads/2025/02/sun-and-rays-png.webp');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.grantaura-grant-writing-page .grantaura-packages-consultation__title {
  color: var(--grantaura-white);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantaura-packages-consultation__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.grantaura-grant-writing-page .grantaura-consultation-button {
  display: inline-block;
  background-color: var(--grantaura-white);
  color: var(--grantaura-primary-dark) !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--grantaura-border-radius);
  text-decoration: none !important;
  transition: var(--grantaura-transition) !important;
  border: none;
  cursor: pointer;
  box-shadow: var(--grantaura-box-shadow-sm);
}

.grantaura-grant-writing-page .grantaura-consultation-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--grantaura-box-shadow);
  background-color: var(--grantaura-gray-50);
}
/* Process Section */
.grantaura-grant-writing-page .grantapp-process-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom, var(--grantaura-white), var(--grantaura-gray-50));
  position: relative;
  overflow: hidden;
}

.grantaura-grant-writing-page .grantapp-process-container {
  max-width: var(--grantaura-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.grantaura-grant-writing-page .grantapp-process-subtitle {
  color: var(--grantaura-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantapp-process-title {
  font-size: 2.2rem;
  color: var(--grantaura-text-dark);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.grantaura-grant-writing-page .grantapp-process-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--grantaura-text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.grantaura-grant-writing-page .grantapp-process-steps {
  position: relative;
}

.grantaura-grant-writing-page .grantapp-process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.grantaura-grant-writing-page .grantapp-process-step:last-child {
  margin-bottom: 0;
}

.grantaura-grant-writing-page .grantapp-process-step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--grantaura-primary);
  color: var(--grantaura-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1.5rem;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-process-step-content {
  flex-grow: 1;
  padding-top: 0.5rem;
}

.grantaura-grant-writing-page .grantapp-process-step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--grantaura-text-dark);
  margin-bottom: 0.75rem;
}

.grantaura-grant-writing-page .grantapp-process-step-description {
  color: var(--grantaura-text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantapp-process-step-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.grantaura-grant-writing-page .grantapp-process-step-info-item {
  background: var(--grantaura-white);
  padding: 0.5rem 1rem;
  border-radius: var(--grantaura-border-radius);
  font-size: 0.875rem;
  color: var(--grantaura-text-dark);
  display: flex;
  align-items: center;
  box-shadow: var(--grantaura-box-shadow-sm);
  border: 1px solid var(--grantaura-gray-100);
}

.grantaura-grant-writing-page .grantapp-process-step-info-item svg {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  color: var(--grantaura-primary);
}

.grantaura-grant-writing-page .grantapp-process-timeline {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 30px;
  width: 2px;
  background: var(--grantaura-gray-200);
  z-index: 1;
}

.grantaura-grant-writing-page .grantapp-process-cta {
  margin-top: 4rem;
  text-align: center;
}

.grantaura-grant-writing-page .grantapp-process-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grantaura-text-dark);
  margin-bottom: 1.5rem;
}

.grantaura-grant-writing-page .grantapp-process-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.grantaura-grant-writing-page .grantapp-process-cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--grantaura-border-radius);
  font-weight: 700;
  text-decoration: none;
  transition: var(--grantaura-transition);
}

.grantaura-grant-writing-page .grantapp-process-cta-btn-primary {
  background: var(--grantaura-primary);
  color: var(--grantaura-white);
  box-shadow: var(--grantaura-box-shadow);
}

.grantaura-grant-writing-page .grantapp-process-cta-btn-primary:hover {
  background: var(--grantaura-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--grantaura-box-shadow-lg);
}

.grantaura-grant-writing-page .grantapp-process-cta-btn-secondary {
  background: var(--grantaura-white);
  color: var(--grantaura-primary);
  border: 2px solid var(--grantaura-primary);
}

.grantaura-grant-writing-page .grantapp-process-cta-btn-secondary:hover {
  background: var(--grantaura-gray-50);
  transform: translateY(-3px);
  box-shadow: var(--grantaura-box-shadow);
}

.grantaura-grant-writing-page .grantapp-process-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.grantaura-grant-writing-page .grantapp-process-shape svg {
  position: relative;
  display: block;
  width: calc(120% + 1.3px);
  height: 110px;
}

.grantaura-grant-writing-page .grantapp-process-shape .shape-fill {
  fill: var(--grantaura-gray-50);
}

/* Testimonials Section */
.grantaura-grant-writing-page .grantapp-testimonials-section {
  padding: 5rem 1.5rem;
  background: var(--grantaura-gray-50);
  position: relative;
}

.grantaura-grant-writing-page .grantapp-testimonials-container {
  max-width: var(--grantaura-max-width);
  margin: 0 auto;
}

.grantaura-grant-writing-page .grantapp-testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.grantaura-grant-writing-page .grantapp-testimonials-subtitle {
  color: var(--grantaura-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantapp-testimonials-title {
  font-size: 2.2rem;
  color: var(--grantaura-text-dark);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.grantaura-grant-writing-page .grantapp-testimonials-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--grantaura-text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.grantaura-grant-writing-page .grantapp-testimonials-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.grantaura-grant-writing-page .grantapp-testimonials-stat {
  background: var(--grantaura-white);
  padding: 1.5rem;
  border-radius: var(--grantaura-border-radius-lg);
  text-align: center;
  min-width: 200px;
  flex: 1;
  box-shadow: var(--grantaura-box-shadow);
  border: 1px solid var(--grantaura-gray-100);
}

.grantaura-grant-writing-page .grantapp-testimonials-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--grantaura-primary);
  margin-bottom: 0.5rem;
}

.grantaura-grant-writing-page .grantapp-testimonials-stat-label {
  font-size: 1rem;
  color: var(--grantaura-text-dark);
  font-weight: 600;
}

.grantaura-grant-writing-page .grantapp-testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.grantaura-grant-writing-page .grantapp-testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.grantaura-grant-writing-page .grantapp-testimonial {
  flex: 0 0 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.grantaura-grant-writing-page .grantapp-testimonial-card {
  background: var(--grantaura-white);
  border-radius: var(--grantaura-border-radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--grantaura-box-shadow);
  border: 1px solid var(--grantaura-gray-100);
  display: flex;
  flex-direction: column;
}

.grantaura-grant-writing-page .grantapp-testimonial-content {
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--grantaura-text-dark);
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.grantaura-grant-writing-page .grantapp-testimonial-content::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-size: 4rem;
  color: var(--grantaura-primary-light);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.grantaura-grant-writing-page .grantapp-testimonial-author {
  display: flex;
  align-items: center;
}

.grantaura-grant-writing-page .grantapp-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}

.grantaura-grant-writing-page .grantapp-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grantaura-grant-writing-page .grantapp-testimonial-info {
  flex-grow: 1;
}

.grantaura-grant-writing-page .grantapp-testimonial-name {
  font-weight: 700;
  color: var(--grantaura-text-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.grantaura-grant-writing-page .grantapp-testimonial-location {
  color: var(--grantaura-text-light);
  font-size: 0.875rem;
}

.grantaura-grant-writing-page .grantapp-testimonial-rating {
  display: flex;
  margin-bottom: 0.5rem;
}

.grantaura-grant-writing-page .grantapp-testimonial-star {
  color: var(--grantaura-warning);
  margin-right: 0.25rem;
}

.grantaura-grant-writing-page .grantapp-testimonials-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.grantaura-grant-writing-page .grantapp-testimonials-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grantaura-gray-300);
  cursor: pointer;
  transition: var(--grantaura-transition);
  border: none;
  padding: 0;
}

.grantaura-grant-writing-page .grantapp-testimonials-dot.active {
  background: var(--grantaura-primary);
  transform: scale(1.2);
}

.grantaura-grant-writing-page .grantapp-testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--grantaura-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--grantaura-box-shadow);
  border: 1px solid var(--grantaura-gray-100);
  z-index: 2;
  transition: var(--grantaura-transition);
}

.grantaura-grant-writing-page .grantapp-testimonials-arrow:hover,
.grantaura-grant-writing-page .grantapp-testimonials-arrow:focus {
  background: var(--grantaura-primary-light);
  color: var(--grantaura-white);
}

.grantaura-grant-writing-page .grantapp-testimonials-arrow-left {
  left: 1rem;
}

.grantaura-grant-writing-page .grantapp-testimonials-arrow-right {
  right: 1rem;
}

.grantaura-grant-writing-page .grantapp-testimonials-arrow svg {
  width: 20px;
  height: 20px;
}
/* FAQ Section */
.grantaura-grant-writing-page .grantapp-faq-section {
  padding: 5rem 1.5rem;
  background: var(--grantaura-white);
  position: relative;
}

.grantaura-grant-writing-page .grantapp-faq-container {
  max-width: var(--grantaura-max-width);
  margin: 0 auto;
}

.grantaura-grant-writing-page .grantapp-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.grantaura-grant-writing-page .grantapp-faq-subtitle {
  color: var(--grantaura-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantapp-faq-title {
  font-size: 2.2rem;
  color: var(--grantaura-text-dark);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.grantaura-grant-writing-page .grantapp-faq-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--grantaura-text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.grantaura-grant-writing-page .grantapp-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grantaura-grant-writing-page .grantapp-faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grantaura-grant-writing-page .grantapp-faq-item {
  background: var(--grantaura-gray-50);
  border-radius: var(--grantaura-border-radius-lg);
  overflow: hidden;
  transition: var(--grantaura-transition);
  border: 1px solid var(--grantaura-gray-100);
}

.grantaura-grant-writing-page .grantapp-faq-item:hover {
  box-shadow: var(--grantaura-box-shadow);
}

.grantaura-grant-writing-page .grantapp-faq-question {
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--grantaura-text-dark);
  user-select: none;
}

.grantaura-grant-writing-page .grantapp-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--grantaura-primary);
  transition: var(--grantaura-transition);
}

.grantaura-grant-writing-page .grantapp-faq-item.active .grantapp-faq-question::after {
  transform: rotate(45deg);
}

.grantaura-grant-writing-page .grantapp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.25rem;
  color: var(--grantaura-text-light);
  line-height: 1.6;
}

.grantaura-grant-writing-page .grantapp-faq-item.active .grantapp-faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.grantaura-grant-writing-page .grantapp-faq-answer-list {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.grantaura-grant-writing-page .grantapp-faq-answer-list--ordered {
  list-style: decimal;
}

.grantaura-grant-writing-page .grantapp-faq-cta {
  margin-top: 4rem;
  text-align: center;
  background: var(--grantaura-gray-50);
  padding: 2.5rem;
  border-radius: var(--grantaura-border-radius-lg);
  border: 1px solid var(--grantaura-gray-100);
}

.grantaura-grant-writing-page .grantapp-faq-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grantaura-text-dark);
  margin-bottom: 1rem;
}

.grantaura-grant-writing-page .grantapp-faq-cta-description {
  color: var(--grantaura-text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.grantaura-grant-writing-page .grantapp-faq-cta-btn {
  display: inline-block;
  background: var(--grantaura-primary);
  color: var(--grantaura-white);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--grantaura-border-radius);
  text-decoration: none;
  transition: var(--grantaura-transition);
}

.grantaura-grant-writing-page .grantapp-faq-cta-btn:hover {
  background: var(--grantaura-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--grantaura-box-shadow);
}

/* Convincing Section */
.grantaura-grant-writing-page .grantapp-convincing-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--grantaura-primary-dark) 0%, var(--grantaura-primary) 100%);
  color: var(--grantaura-white);
  position: relative;
  overflow: hidden;
}

.grantaura-grant-writing-page .grantapp-convincing-container {
  max-width: var(--grantaura-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-convincing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.grantaura-grant-writing-page .grantapp-convincing-content {
  text-align: center;
}

.grantaura-grant-writing-page .grantapp-convincing-subtitle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.grantaura-grant-writing-page .grantapp-convincing-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.grantaura-grant-writing-page .grantapp-convincing-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.grantaura-grant-writing-page .grantapp-convincing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.grantaura-grant-writing-page .grantapp-convincing-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.grantaura-grant-writing-page .grantapp-convincing-icon {
  margin-right: 1rem;
  background: var(--grantaura-secondary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--grantaura-primary-dark);
  font-weight: bold;
}

.grantaura-grant-writing-page .grantapp-convincing-btn {
  display: inline-block;
  background: var(--grantaura-secondary);
  color: var(--grantaura-primary-dark);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--grantaura-border-radius);
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--grantaura-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.grantaura-grant-writing-page .grantapp-convincing-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--grantaura-transition);
  z-index: -1;
}

.grantaura-grant-writing-page .grantapp-convincing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.grantaura-grant-writing-page .grantapp-convincing-btn:hover::after {
  left: 100%;
  transition: 0.7s;
}

.grantaura-grant-writing-page .grantapp-convincing-visual {
  position: relative;
}

.grantaura-grant-writing-page .grantapp-convincing-comparison {
  background: var(--grantaura-white);
  border-radius: var(--grantaura-border-radius-lg);
  overflow: hidden;
  box-shadow: var(--grantaura-box-shadow-xl);
}

.grantaura-grant-writing-page .grantapp-convincing-comparison-header {
  padding: 1.5rem;
  background: var(--grantaura-gray-50);
  border-bottom: 1px solid var(--grantaura-gray-100);
  text-align: center;
}

.grantaura-grant-writing-page .grantapp-convincing-comparison-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--grantaura-text-dark);
  margin-bottom: 0.5rem;
}

.grantaura-grant-writing-page .grantapp-convincing-comparison-subtitle {
  font-size: 0.875rem;
  color: var(--grantaura-text-light);
}

.grantaura-grant-writing-page .grantapp-convincing-stat {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--grantaura-gray-100);
}

.grantaura-grant-writing-page .grantapp-convincing-stat:last-child {
  border-bottom: none;
}

.grantaura-grant-writing-page .grantapp-convincing-stat-label {
  font-weight: 600;
  color: var(--grantaura-text-dark);
}

.grantaura-grant-writing-page .grantapp-convincing-stat-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.grantaura-grant-writing-page .grantapp-convincing-value-diy {
  color: var(--grantaura-danger);
  font-weight: 700;
}

.grantaura-grant-writing-page .grantapp-convincing-value-pro {
  color: var(--grantaura-success);
  font-weight: 700;
}

.grantaura-grant-writing-page .grantapp-convincing-arrow {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--grantaura-text-light);
}

.grantaura-grant-writing-page .grantapp-convincing-arrow svg {
  width: 16px;
  height: 16px;
}

.grantaura-grant-writing-page .grantapp-convincing-badge {
  position: absolute;
  top: -40px;
  right: -20px;
  background: var(--grantaura-secondary);
  color: var(--grantaura-primary-dark);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transform: rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: pulse 2s infinite;
  z-index: 3;
}

.grantaura-grant-writing-page .grantapp-convincing-chart {
  margin-top: 2rem;
  background: var(--grantaura-white);
  border-radius: var(--grantaura-border-radius-lg);
  overflow: hidden;
  box-shadow: var(--grantaura-box-shadow-xl);
  padding: 1.5rem;
}

.grantaura-grant-writing-page .grantapp-convincing-chart-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grantaura-text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.grantaura-grant-writing-page .grantapp-convincing-bars {
  display: flex;
  height: 300px;
  align-items: flex-end;
  gap: 2rem;
  padding: 0 1rem;
}

.grantaura-grant-writing-page .grantapp-convincing-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.grantaura-grant-writing-page .grantapp-convincing-bar {
  width: 100%;
  background: var(--grantaura-gray-200);
  position: relative;
  border-radius: var(--grantaura-border-radius) var(--grantaura-border-radius) 0 0;
}

.grantaura-grant-writing-page .grantapp-convincing-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: inherit;
  height: 0;
  animation: barFill 1.5s ease-out forwards;
}

.grantaura-grant-writing-page .grantapp-convincing-bar-label {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--grantaura-text-dark);
  font-size: 0.9rem;
}

.grantaura-grant-writing-page .grantapp-convincing-bar-value {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 0.875rem;
}

.grantaura-grant-writing-page .grantapp-convincing-diy-fill {
  background: var(--grantaura-danger);
}

.grantaura-grant-writing-page .grantapp-convincing-diy-value {
  color: var(--grantaura-danger);
}

.grantaura-grant-writing-page .grantapp-convincing-pro-fill {
  background: var(--grantaura-success);
}

.grantaura-grant-writing-page .grantapp-convincing-pro-value {
  color: var(--grantaura-success);
}

.grantaura-grant-writing-page .grantapp-convincing-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.grantaura-grant-writing-page .grantapp-convincing-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--grantaura-white);
}

.grantaura-grant-writing-page .grantapp-convincing-circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.grantaura-grant-writing-page .grantapp-convincing-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
}

.grantaura-grant-writing-page .grantapp-convincing-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 15px 15px;
}

.grantaura-grant-writing-page .grantapp-convincing-dots-1 {
  top: 10%;
  right: 5%;
}

.grantaura-grant-writing-page .grantapp-convincing-dots-2 {
  bottom: 15%;
  left: 10%;
}

/* Footer CTA */
.grantaura-grant-writing-page .grantapp-footer-cta-section {
  padding: 5rem 1.5rem;
  background: var(--grantaura-gray-50);
  position: relative;
  overflow: hidden;
}

.grantaura-grant-writing-page .grantapp-footer-cta-container {
  max-width: var(--grantaura-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-footer-cta-content {
  background: var(--grantaura-primary);
  border-radius: var(--grantaura-border-radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--grantaura-white);
  box-shadow: var(--grantaura-box-shadow-lg);
}

.grantaura-grant-writing-page .grantapp-footer-cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-footer-cta-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

.grantaura-grant-writing-page .grantapp-footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.grantaura-grant-writing-page .grantapp-footer-cta-btn {
  display: inline-block;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--grantaura-border-radius);
  text-decoration: none;
  transition: var(--grantaura-transition);
}

.grantaura-grant-writing-page .grantapp-footer-cta-btn-primary {
  background: var(--grantaura-secondary);
  color: var(--grantaura-primary-dark);
  box-shadow: var(--grantaura-box-shadow);
}

.grantaura-grant-writing-page .grantapp-footer-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--grantaura-box-shadow-lg);
}

.grantaura-grant-writing-page .grantapp-footer-cta-btn-secondary {
  background: transparent;
  color: var(--grantaura-white);
  border: 2px solid var(--grantaura-white);
}

.grantaura-grant-writing-page .grantapp-footer-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.grantaura-grant-writing-page .grantapp-footer-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  background-image: url('https://grantaura.com/wp-content/uploads/2025/02/patterns-with-connection-7.webp');
  background-size: cover;
  background-position: center;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
  0% { transform: rotate(5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
  100% { transform: rotate(5deg) scale(1); }
}

@keyframes barFill {
  from { height: 0; }
  to { height: var(--fill-height); }
}

@media (min-width: 768px) {
  .grantaura-grant-writing-page .grantapp-hero-section {
    padding: 8rem 2rem;
  }

  .grantaura-grant-writing-page .grantapp-hero-title {
    font-size: 3.5rem;
  }

  .grantaura-grant-writing-page .grantapp-services-section,
  .grantaura-grant-writing-page .grantapp-comparison-section,
  .grantaura-grant-writing-page .grantapp-process-section,
  .grantaura-grant-writing-page .grantapp-testimonials-section,
  .grantaura-grant-writing-page .grantapp-faq-section,
  .grantaura-grant-writing-page .grantapp-convincing-section,
  .grantaura-grant-writing-page .grantapp-footer-cta-section {
    padding: 7rem 2rem;
  }

  .grantaura-grant-writing-page .grantapp-services-title,
  .grantaura-grant-writing-page .grantapp-comparison-title,
  .grantaura-grant-writing-page .grantapp-process-title,
  .grantaura-grant-writing-page .grantapp-testimonials-title,
  .grantaura-grant-writing-page .grantapp-faq-title {
    font-size: 2.75rem;
  }

  .grantaura-grant-writing-page .grantapp-convincing-title {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .grantaura-grant-writing-page .grantapp-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .grantaura-grant-writing-page .grantapp-hero-content {
    text-align: left;
  }

  .grantaura-grant-writing-page .grantapp-hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.4rem;
  }

  .grantaura-grant-writing-page .grantapp-hero-stats {
    justify-content: flex-start;
  }

  .grantaura-grant-writing-page .grantapp-hero-image {
    margin-top: 0;
  }

  .grantaura-grant-writing-page .grantapp-hero-badge {
    right: 0;
  }

  .grantaura-grant-writing-page .grantapp-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grantaura-grant-writing-page .grantaura-packages-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .grantaura-grant-writing-page .grantapp-convincing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .grantaura-grant-writing-page .grantapp-convincing-content {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .grantaura-grant-writing-page .grantapp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grantaura-grant-writing-page .grantapp-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grantaura-grant-writing-page .grantaura-packages-section {
    padding: 3rem 1rem;
  }

  .grantaura-grant-writing-page .grantaura-package-card {
    padding: 2rem;
  }

  .grantaura-grant-writing-page .grantaura-packages-header {
    margin-bottom: 2rem;
  }

  .grantaura-grant-writing-page .grantaura-packages-additional {
    padding: 1.5rem;
    margin-top: 3rem;
  }

  .grantaura-grant-writing-page .grantaura-additional-services {
    grid-template-columns: 1fr;
  }

  .grantaura-grant-writing-page .grantaura-packages-consultation {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .grantaura-grant-writing-page .grantapp-comparison-header-cell,
  .grantaura-grant-writing-page .grantapp-comparison-cell {
    padding: 1rem 0.75rem;
    font-size: 0.8rem;
  }

  .grantaura-grant-writing-page .grantapp-comparison-header-cell {
    font-size: 1rem;
  }

  .grantaura-grant-writing-page .grantapp-testimonials-stat {
    min-width: 140px;
    padding: 1rem;
  }

  .grantaura-grant-writing-page .grantapp-testimonials-stat-number {
    font-size: 2rem;
  }

  .grantaura-grant-writing-page .grantapp-testimonials-stat-label {
    font-size: 0.875rem;
  }

  .grantaura-grant-writing-page .grantapp-process-step {
    flex-direction: column;
  }

  .grantaura-grant-writing-page .grantapp-process-step-number {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .grantaura-grant-writing-page .grantapp-process-timeline {
    display: none;
  }
}

@media (max-width: 576px) {
  .grantaura-grant-writing-page .grantapp-process-cta-buttons,
  .grantaura-grant-writing-page .grantapp-footer-cta-buttons {
    flex-direction: column;
  }

  .grantaura-grant-writing-page .grantapp-process-cta-btn,
  .grantaura-grant-writing-page .grantapp-footer-cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .grantaura-grant-writing-page * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
