/* Instagram Media Kit Generator Tool Styles */
/* Brand: #000000 (black), #d1fe17 (lime), NO box-shadows */

/* ============================================
   HERO SECTION
   ============================================ */
.tool-hero {
    background: #000000;
    padding: 80px 0 60px;
    text-align: center;
}

.tool-hero__badge {
    display: inline-block;
    background: rgba(209, 254, 23, 0.1);
    color: #d1fe17;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(209, 254, 23, 0.3);
}

.tool-hero__title {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tool-hero__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   TOOL SECTION
   ============================================ */
.tool-section {
    padding: 60px 0;
    background: #f9fafb;
}

.tool-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   TABS
   ============================================ */
.tool-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.tool-tabs__tab {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.tool-tabs__tab:hover {
    color: #374151;
    background: #f9fafb;
}

.tool-tabs__tab.active {
    color: #000000;
    background: #ffffff;
}

.tool-tabs__tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d1fe17;
}

/* ============================================
   TAB CONTENT
   ============================================ */
.tool-tab-content {
    display: none;
    padding: 32px;
}

.tool-tab-content.active {
    display: block;
}

/* ============================================
   FORM SECTIONS
   ============================================ */
.form-section {
    margin-bottom: 40px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section__title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

/* ============================================
   FORM GROUPS & ROWS
   ============================================ */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-row--three {
    grid-template-columns: repeat(3, 1fr);
}

.form-row--four {
    grid-template-columns: repeat(4, 1fr);
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d1fe17;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-hint {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

/* ============================================
   COUNTRY & PERCENT INPUTS
   ============================================ */
.country-input-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.country-input-group .form-input:first-child {
    flex: 2;
}

.country-input-group .form-input:last-child {
    flex: 1;
    max-width: 80px;
}

/* ============================================
   GENDER SPLIT
   ============================================ */
.gender-split-inputs {
    display: flex;
    gap: 12px;
}

.gender-split-inputs .form-input {
    flex: 1;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.package-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.package-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.package-item__number {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.package-item__remove {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.package-item__remove:hover {
    background: rgba(239, 68, 68, 0.1);
}

.package-item__fields {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 12px;
}

.package-item__fields .form-group {
    margin-bottom: 12px;
}

.package-item__fields .form-group--full {
    grid-column: 1 / -1;
}

.btn--add-package {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn--add-package:hover {
    background: #d1fe17;
    color: #000000;
}

.package-suggestions {
    margin-top: 16px;
}

.package-suggestions__title {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.package-suggestions__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.package-suggestion {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.package-suggestion:hover {
    border-color: #d1fe17;
    background: rgba(209, 254, 23, 0.05);
}

/* ============================================
   COLOR PICKER
   ============================================ */
.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.color-picker {
    width: 48px;
    height: 48px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    background: transparent;
}

.color-picker::-webkit-color-swatch-wrapper {
    padding: 2px;
}

.color-picker::-webkit-color-swatch {
    border: none;
    border-radius: 4px;
}

.color-preview {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-preview__swatch {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.color-preview__value {
    font-size: 14px;
    color: #6b7280;
    font-family: monospace;
}

/* ============================================
   TEMPLATE OPTIONS
   ============================================ */
.template-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.template-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.template-option:hover {
    border-color: #d1fe17;
}

.template-option.selected {
    border-color: #d1fe17;
    background: rgba(209, 254, 23, 0.05);
}

.template-option__preview {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.template-option__preview--minimal {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    border: 1px solid #e5e7eb;
}

.template-option__preview--vibrant {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

.template-option__preview--dark {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
}

.template-option__preview--professional {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e1;
}

.template-option__name {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* ============================================
   GENERATE BUTTON
   ============================================ */
.generate-section {
    padding: 24px 32px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.btn--generate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 48px;
    background: #d1fe17;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 250px;
}

.btn--generate:hover {
    background: #000000;
    color: #d1fe17;
}

.btn--generate:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* ============================================
   PREVIEW TAB
   ============================================ */
.preview-section {
    text-align: center;
}

.preview-section__title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
}

.preview-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.btn--download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--download-pdf {
    background: #000000;
    color: #ffffff;
    border: none;
}

.btn--download-pdf:hover {
    background: #d1fe17;
    color: #000000;
}

.btn--download-image {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.btn--download-image:hover {
    background: #000000;
    color: #ffffff;
}

.btn--edit {
    background: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--edit:hover {
    border-color: #000000;
    color: #000000;
}

.preview-hint {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* ============================================
   MEDIA KIT PREVIEW
   ============================================ */
.media-kit-preview {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.media-kit-preview--minimal {
    background: #ffffff;
}

.media-kit-preview--vibrant {
    background: linear-gradient(135deg, #fdf2f8 0%, #f5f3ff 100%);
}

.media-kit-preview--dark {
    background: #000000;
    color: #ffffff;
}

.media-kit-preview--professional {
    background: #f8fafc;
}

.media-kit__header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.media-kit__name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.media-kit__handle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 8px;
}

.media-kit__niche {
    display: inline-block;
    background: rgba(209, 254, 23, 0.2);
    color: #000000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.media-kit__bio {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.media-kit__section {
    margin-bottom: 28px;
}

.media-kit__section-title {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.media-kit__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.media-kit__stat {
    text-align: center;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.media-kit__stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.media-kit__stat-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
}

.media-kit__demographics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.media-kit__demo-item {
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.media-kit__demo-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.media-kit__demo-value {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.media-kit__packages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.media-kit__package {
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #d1fe17;
}

.media-kit__package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.media-kit__package-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.media-kit__package-price {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.media-kit__package-description {
    font-size: 14px;
    color: #6b7280;
}

.media-kit__contact {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.media-kit__email {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

.media-kit__website {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* Dark theme adjustments */
.media-kit-preview--dark .media-kit__header {
    border-bottom-color: #374151;
}

.media-kit-preview--dark .media-kit__bio,
.media-kit-preview--dark .media-kit__handle {
    color: rgba(255, 255, 255, 0.7);
}

.media-kit-preview--dark .media-kit__stat,
.media-kit-preview--dark .media-kit__demo-item,
.media-kit-preview--dark .media-kit__package {
    background: #1f2937;
}

.media-kit-preview--dark .media-kit__stat-value,
.media-kit-preview--dark .media-kit__demo-value,
.media-kit-preview--dark .media-kit__package-name,
.media-kit-preview--dark .media-kit__package-price,
.media-kit-preview--dark .media-kit__section-title,
.media-kit-preview--dark .media-kit__name {
    color: #ffffff;
}

.media-kit-preview--dark .media-kit__stat-label,
.media-kit-preview--dark .media-kit__demo-label,
.media-kit-preview--dark .media-kit__package-description {
    color: rgba(255, 255, 255, 0.6);
}

.media-kit-preview--dark .media-kit__contact {
    border-top-color: #374151;
}

.media-kit-preview--dark .media-kit__email {
    color: #ffffff;
}

.media-kit-preview--dark .media-kit__website {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   INFO SECTION
   ============================================ */
.tool-info {
    padding: 80px 0;
    background: #ffffff;
}

.tool-info__title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    text-align: center;
}

.tool-info__intro {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.tool-info__subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 48px 0 24px;
}

.tool-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.tool-info__item {
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.tool-info__item-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.tool-info__item-description {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.tool-info__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tool-info__list-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.tool-info__list-section {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    min-width: 180px;
}

.tool-info__list-description {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.tool-info__tips {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tool-info__tip {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.tool-info__tip-number {
    width: 36px;
    height: 36px;
    background: #000000;
    color: #d1fe17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.tool-info__tip-content {
    flex: 1;
}

.tool-info__tip-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.tool-info__tip-description {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.tool-info__closing {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    text-align: center;
    margin-top: 48px;
}

.tool-info__updated {
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
    margin-top: 16px;
}

/* ============================================
   NEXT STEP CTA
   ============================================ */
.tool-next-step {
    padding: 80px 0;
    background: #000000;
}

.tool-next-step__badge {
    display: inline-block;
    background: rgba(209, 254, 23, 0.1);
    color: #d1fe17;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(209, 254, 23, 0.3);
}

.tool-next-step__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.tool-next-step__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.tool-next-step__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.tool-next-step__feature {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-next-step__feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.tool-next-step__feature-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.tool-next-step__cta {
    text-align: center;
}

.btn--cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #d1fe17;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn--cta:hover {
    background: #ffffff;
}

.tool-next-step__microcopy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 16px;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.tool-comparison {
    padding: 80px 0;
    background: #f9fafb;
}

.tool-comparison__badge {
    display: inline-block;
    background: #000000;
    color: #d1fe17;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.tool-comparison__title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.tool-comparison__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.tool-comparison__column {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.tool-comparison__column--manual {
    background: #ffffff;
}

.tool-comparison__column--automated {
    background: #000000;
}

.tool-comparison__column-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-comparison__column--manual .tool-comparison__column-title {
    color: #000000;
}

.tool-comparison__column--automated .tool-comparison__column-title {
    color: #d1fe17;
}

.tool-comparison__column-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
}

.tool-comparison__column--manual .tool-comparison__column-subtitle {
    color: #6b7280;
}

.tool-comparison__column--automated .tool-comparison__column-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.tool-comparison__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-comparison__list li {
    padding: 12px 0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tool-comparison__column--manual .tool-comparison__list li {
    color: #4b5563;
}

.tool-comparison__column--automated .tool-comparison__list li {
    color: rgba(255, 255, 255, 0.9);
}

.tool-comparison__list li::before {
    font-size: 16px;
    flex-shrink: 0;
}

.tool-comparison__column--manual .tool-comparison__list li::before {
    content: '✗';
    color: #ef4444;
}

.tool-comparison__column--automated .tool-comparison__list li::before {
    content: '✓';
    color: #d1fe17;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.tool-faq {
    padding: 80px 0;
    background: #ffffff;
}

.tool-faq__title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.tool-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.tool-faq__item {
    border-bottom: 1px solid #e5e7eb;
}

.tool-faq__question {
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.tool-faq__question-text {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
}

.tool-faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.tool-faq__icon::before,
.tool-faq__icon::after {
    content: '';
    position: absolute;
    background: #000000;
    transition: transform 0.2s ease;
}

.tool-faq__icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tool-faq__icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tool-faq__item.active .tool-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.tool-faq__answer {
    display: none;
    padding-bottom: 24px;
}

.tool-faq__item.active .tool-faq__answer {
    display: block;
}

.tool-faq__answer p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

/* ============================================
   SHARE BAR
   ============================================ */
.tool-share-bar {
    padding: 24px 0;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.tool-share-bar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tool-share-bar__text {
    font-size: 15px;
    color: #6b7280;
}

.tool-share-bar__buttons {
    display: flex;
    gap: 8px;
}

.btn--share {
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--share:hover {
    border-color: #000000;
    color: #000000;
}

/* ============================================
   RELATED TOOLS
   ============================================ */
.tool-related {
    padding: 60px 0;
    background: #ffffff;
}

.tool-related__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 32px;
    text-align: center;
}

.tool-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.tool-related__item {
    padding: 24px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tool-related__item:hover {
    border-color: #d1fe17;
    transform: translateY(-2px);
}

.tool-related__item-name {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.tool-related__item-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================
   FINAL CTA
   ============================================ */
.tool-final-cta {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.tool-final-cta__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.tool-final-cta__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.tool-final-cta__badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.tool-final-cta__badge {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tool-final-cta__badge::before {
    content: '✓';
    color: #d1fe17;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .tool-hero {
        padding: 60px 0 40px;
    }

    .tool-section {
        padding: 40px 0;
    }

    .tool-tab-content {
        padding: 24px 20px;
    }

    .form-row,
    .form-row--three,
    .form-row--four {
        grid-template-columns: 1fr;
    }

    .country-input-group {
        flex-direction: column;
    }

    .country-input-group .form-input:last-child {
        max-width: none;
    }

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

    .package-item__fields {
        grid-template-columns: 1fr;
    }

    .preview-actions {
        flex-direction: column;
    }

    .btn--download,
    .btn--edit {
        width: 100%;
        justify-content: center;
    }

    .media-kit-preview {
        padding: 24px;
    }

    .media-kit__stats {
        grid-template-columns: 1fr;
    }

    .media-kit__demographics {
        grid-template-columns: 1fr;
    }

    .tool-info {
        padding: 60px 0;
    }

    .tool-info__grid {
        grid-template-columns: 1fr;
    }

    .tool-info__list-item {
        flex-direction: column;
        gap: 8px;
    }

    .tool-info__list-section {
        min-width: auto;
    }

    .tool-next-step {
        padding: 60px 0;
    }

    .tool-next-step__features {
        grid-template-columns: 1fr;
    }

    .tool-comparison {
        padding: 60px 0;
    }

    .tool-comparison__grid {
        grid-template-columns: 1fr;
    }

    .tool-faq {
        padding: 60px 0;
    }

    .tool-related__grid {
        grid-template-columns: 1fr;
    }

    .tool-final-cta {
        padding: 60px 0;
    }

    .tool-final-cta__badges {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .tool-tabs__tab {
        padding: 12px 16px;
        font-size: 14px;
    }

    .generate-section {
        padding: 20px;
    }

    .btn--generate {
        width: 100%;
        padding: 14px 24px;
    }

    .form-section__title {
        font-size: 16px;
    }

    .package-item {
        padding: 16px;
    }
}
