/* =========================================
   Let's go free – Homepage Styles
   Branding: Dark/Gold, Poppins
   ========================================= */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;1,300&display=swap');

/* ── VARIABLEN ── */
:root {
    --gold:       #C9A882;
    --gold-d:     #8B7355;
    --gold-dk:    #4a3d2a;
    --dark:       #0f0d0a;
    --dark2:      #1a1612;
    --dark3:      #2a2218;
    --cream:      #F5E6D3;
    --cream2:     #FAF0E6;
    --cream3:     #EFE3D5;
    --bg-light:   #f4ede4;
    --white:      #ffffff;
    --text:       #3a2e20;
    --muted:      #7a6a56;
    --border:     #e0cdb8;
    --red:        #c0392b;
    --red-bg:     rgba(192,57,43,.08);
    --shadow-sm:  0 2px 10px rgba(74,61,42,.08);
    --shadow-md:  0 4px 20px rgba(74,61,42,.14);
    --shadow-lg:  0 8px 36px rgba(74,61,42,.20);
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-light);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ── */
.container {
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* ── HERO ── */
.hero {
    background: var(--dark2);
    color: var(--cream);
    padding: 70px 50px 60px;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--gold);
}

.hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-d), var(--gold-dk));
}

.hero h1 {
    font-size: 2.6em;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: .01em;
}

.hero .subtitle {
    font-size: 1.2em;
    color: var(--gold);
    margin-bottom: 36px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: .04em;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 24px auto 36px;
    display: block;
    border: 4px solid var(--gold-d);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    object-fit: cover;
}

/* ── HERO BUTTONS ── */
.cta-button {
    display: inline-block;
    background: var(--dark3);
    color: var(--gold);
    border: 1px solid var(--gold-d);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    font-family: 'Courier New', monospace;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin: 6px;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background: var(--gold-dk);
    color: var(--cream2);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ── NEW BUTTON BADGE ── */
.cta-button-new {
    position: relative;
}

.new-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75em;
    font-weight: 700;
    margin-right: 8px;
    -webkit-animation: blink 1.5s ease-in-out infinite;
    animation: blink 1.5s ease-in-out infinite;
}

@-webkit-keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ── SECTIONS ── */
.section {
    padding: 56px 50px;
}

.section-light  { background: var(--cream2); }
.section-cream  { background: var(--cream3); }
.section-white  { background: var(--white); }
.section-dark   { background: var(--dark2); color: var(--cream); }

.section h2 {
    font-size: 1.9em;
    font-weight: 700;
    color: var(--gold-dk);
    margin-bottom: 24px;
    line-height: 1.25;
}

.section h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--gold-dk);
    margin-bottom: 18px;
    line-height: 1.3;
}

.section p {
    font-size: 1.05em;
    font-weight: 300;
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--text);
}

.section pbox {
    font-size: 1em;
    font-weight: 300;
    margin-bottom: 18px;
    line-height: 1.65;
    display: block;
    color: var(--text);
}

/* ── SECTION LABEL (Pill) ── */
.section-label {
    display: inline-block;
    background: linear-gradient(to right, var(--gold-dk), var(--gold-d));
    color: #d4b896;
    font-size: .8em;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 4px;
    margin-bottom: 18px;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
    background: var(--cream);
    padding: 32px 36px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 32px 0;
    border-left: 4px solid var(--gold-d);
    box-shadow: var(--shadow-sm);
}

.highlight-box strong { color: var(--gold-dk); }

.highlight-box p {
    font-size: 1.05em;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 14px;
    color: var(--text);
}

.highlight-box p:last-child { margin-bottom: 0; }

/* ── PROBLEMS / SOLUTIONS GRID ── */
.problems-grid, .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card h4 {
    color: var(--gold-dk);
    margin-bottom: 10px;
    font-size: 1em;
    font-weight: 600;
}

.card pbox {
    font-size: .95em;
    font-weight: 300;
    line-height: 1.65;
    display: block;
    color: var(--text);
}

/* ── SESSIONS SECTION ── */
.sessions-section {
    background: var(--cream3);
    padding: 60px 50px;
}

.sessions-section h2 {
    text-align: center;
    font-size: 2em;
    color: var(--gold-dk);
    margin-bottom: 12px;
}

.offer-tagline {
    text-align: center;
    font-size: 1.1em;
    color: var(--muted);
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
}

.sessions-container { max-width: 780px; margin: 0 auto; }

.session-card {
    background: var(--white);
    padding: 28px 30px;
    margin-bottom: 18px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s ease;
}

.session-card:hover { box-shadow: var(--shadow-md); }

.session-card h3 {
    color: var(--gold-dk);
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 12px;
}

.session-card p {
    font-size: .98em;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--text);
}

.session-card ul {
    margin-left: 20px;
    margin-top: 10px;
}

.session-card li {
    margin-bottom: 7px;
    line-height: 1.6;
    font-size: .98em;
    font-weight: 300;
    color: var(--text);
}

.session-card ul ul {
    margin-top: 6px;
}

/* ── PRICING SECTION ── */
.pricing-section {
    background: var(--white);
    padding: 60px 50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 44px;
}

.pricing-header h2 {
    font-size: 1.9em;
    color: var(--gold-dk);
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 1.05em;
    color: var(--muted);
    font-weight: 300;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--cream2);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
    border-top: 3px solid var(--gold);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    background: var(--dark2);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured .package-name,
.pricing-card.featured .price,
.pricing-card.featured .package-subtitle,
.pricing-card.featured .price-details { color: var(--cream); }

.pricing-card.featured .features-list li { color: var(--cream); }
.pricing-card.featured .features-list li { border-bottom-color: rgba(201,168,130,.15); }

.badge {
    position: absolute;
    top: -14px;
    right: 28px;
    background: var(--gold);
    color: var(--dark2);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: .8em;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.package-name {
    font-size: 1.6em;
    color: var(--gold-dk);
    margin-bottom: 6px;
    font-weight: 700;
}

.package-subtitle {
    font-size: 1em;
    color: var(--muted);
    margin-bottom: 22px;
    font-weight: 300;
}

.price {
    font-size: 2.8em;
    color: var(--gold-d);
    font-weight: 700;
    margin: 20px 0;
    line-height: 1;
}

.price-details {
    font-size: .95em;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.65;
    font-weight: 300;
}

.features-list { list-style: none; margin: 24px 0; }

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    font-size: .98em;
    font-weight: 300;
    color: var(--text);
}

.features-list li:last-child { border-bottom: none; }

.check  { color: #4caf50; font-weight: 700; margin-right: 10px; flex-shrink: 0; }
.cross  { color: var(--border); margin-right: 10px; flex-shrink: 0; }

.pricing-cta-button {
    display: block;
    width: 100%;
    background: var(--dark2);
    color: var(--gold);
    border: 1px solid var(--gold-d);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    font-family: 'Courier New', monospace;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: 28px;
    transition: all .25s ease;
}

.pricing-cta-button:hover {
    background: var(--gold-dk);
    color: var(--cream);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-cta-button {
    background: var(--gold-dk);
    color: var(--cream);
    border-color: var(--gold);
}

.pricing-card.featured .pricing-cta-button:hover {
    background: var(--gold);
    color: var(--dark2);
}

/* ── INCLUDED SECTION ── */
.included-section {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 34px 36px;
    margin-top: 34px;
    box-shadow: var(--shadow-sm);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid var(--gold-d);
}

.included-section h3 {
    color: var(--gold-dk);
    font-size: 1.25em;
    margin-bottom: 20px;
    text-align: center;
}

.included-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.included-list li {
    display: flex;
    align-items: center;
    font-size: .98em;
    font-weight: 300;
    color: var(--text);
    gap: 8px;
}

/* ── CALL / CONTACT SECTION ── */
.call-section {
    background: var(--dark2);
    color: var(--cream);
    padding: 60px 50px;
    text-align: center;
    border-top: 4px solid var(--gold);
    position: relative;
}

.call-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-d), var(--gold-dk));
}

.call-section h2 {
    color: var(--cream);
    font-size: 1.9em;
    margin-bottom: 16px;
}

.call-section p {
    font-size: 1.1em;
    margin-bottom: 36px;
    color: var(--cream);
    font-weight: 300;
    opacity: .9;
}

/* ── CONTACT FORM ── */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(201,168,130,.25);
    border-radius: var(--radius-sm);
    font-size: .98em;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background: rgba(255,255,255,.06);
    color: var(--cream);
    transition: border-color .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(245,230,211,.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,.1);
}

.contact-form button {
    width: 100%;
    background: var(--gold-dk);
    color: var(--cream);
    border: 1px solid var(--gold-d);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 1em;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s ease;
}

.contact-form button:hover {
    background: var(--gold);
    color: var(--dark2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
}

/* ── FOLLOWUP SECTION ── */
.followup-section {
    background: var(--cream3);
    padding: 60px 50px;
}

.followup-section h2 {
    text-align: center;
    font-size: 1.9em;
    color: var(--gold-dk);
    margin-bottom: 14px;
}

.followup-tagline {
    text-align: center;
    font-size: 1.05em;
    color: var(--muted);
    margin-bottom: 32px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
}

/* Follow-up form hat helle Felder */
.followup-section .contact-form input,
.followup-section .contact-form textarea {
    background: var(--white);
    border-color: var(--border);
    color: var(--text);
}

.followup-section .contact-form input::placeholder,
.followup-section .contact-form textarea::placeholder {
    color: var(--muted);
}

.followup-section .contact-form input:focus,
.followup-section .contact-form textarea:focus {
    border-color: var(--gold-d);
    background: var(--white);
}

/* ── SOCIAL SECTION ── */
.social-section {
    padding: 44px 50px;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.social-section p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 1em;
    font-weight: 300;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--dark2);
    border: 1px solid var(--gold-d);
    border-radius: 50%;
    transition: all .25s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold-dk);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.social-link svg { width: 22px; height: 22px; fill: var(--gold); }

/* ── FOOTER ── */
.footer {
    padding: 44px 50px;
    text-align: center;
    background: var(--dark2);
    border-top: 4px solid var(--gold-dk);
}

.footer-tagline {
    font-size: 1.1em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.5;
}

.disclaimer {
    max-width: 700px;
    margin: 0 auto 28px;
    padding: 22px 26px;
    background: rgba(201,168,130,.08);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold-dk);
    text-align: left;
    font-size: .88em;
    color: rgba(245,230,211,.65);
    font-weight: 300;
    line-height: 1.7;
}

.disclaimer strong { color: var(--gold); }

.legal-links { margin-top: 22px; }

.legal-links p {
    color: var(--muted);
    font-size: .88em;
    margin-bottom: 6px;
}

.legal-links a {
    color: rgba(201,168,130,.6);
    font-size: .82em;
    text-decoration: none;
    transition: color .2s;
}

.legal-links a:hover { color: var(--gold); }

/* ── INFO BOX (yellow → gold tip) ── */
.info-box {
    background: rgba(201,168,130,.1);
    padding: 22px 26px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--gold);
    margin: 22px 0;
    font-size: .98em;
    font-weight: 300;
    color: var(--text);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero { padding: 50px 28px 44px; }
    .hero h1 { font-size: 2em; }
    .hero .subtitle { font-size: 1em; }
    .profile-image { width: 200px; height: 200px; }
    .section { padding: 40px 28px; }
    .section h2 { font-size: 1.55em; }
    .section h3 { font-size: 1.25em; }
    .sessions-section, .pricing-section, .call-section, .followup-section { padding: 44px 28px; }
    .problems-grid, .solutions-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; gap: 36px; }
    .pricing-card.featured { order: -1; }
    .included-list { grid-template-columns: 1fr; }
    .price { font-size: 2.3em; }
    .social-section, .footer { padding: 36px 28px; }
    .cta-button { font-size: .88em; padding: 12px 22px; }
}

/* ── ENDE ── */

/* ── SIMPLE PAGE LAYOUT (agb, impressum, datenschutz, danke) ── */
body.page-simple {
    background: linear-gradient(145deg, var(--dark2) 0%, var(--dark3) 40%, #3a2e1a 100%);
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.page-container {
    max-width: 720px;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.page-hero {
    background: var(--dark2);
    color: var(--cream);
    padding: 36px 44px 32px;
    border-top: 4px solid var(--gold);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-d), var(--gold-dk));
}

.page-hero h1 {
    font-size: 1.7em;
    font-weight: 700;
    color: var(--cream);
    margin: 0;
    line-height: 1.25;
}

.page-hero p {
    color: var(--gold);
    font-size: .95em;
    font-weight: 300;
    font-style: italic;
    margin: 6px 0 0;
}

.page-body {
    padding: 36px 44px 44px;
}

.info-block {
    background: var(--cream);
    padding: 24px 26px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    border-left: 4px solid var(--gold-d);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.info-block h2 {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--gold-dk);
    margin-bottom: 14px;
    line-height: 1.3;
}

.info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-block ul li {
    font-size: .92em;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 14px;
    padding-left: 0;
}

.info-block ul li:last-child { margin-bottom: 0; }

.info-block ul li strong {
    color: var(--gold-dk);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.info-block a {
    color: var(--gold-d);
    text-decoration: none;
    border-bottom: 1px solid rgba(139,115,85,.3);
    transition: color .2s, border-color .2s;
}

.info-block a:hover {
    color: var(--gold-dk);
    border-bottom-color: var(--gold-d);
}

.back-btn {
    display: inline-block;
    background: var(--dark2);
    color: var(--gold);
    border: 1px solid var(--gold-d);
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    font-size: .9em;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 28px;
    transition: all .25s ease;
}

.back-btn:hover {
    background: var(--gold-dk);
    color: var(--cream);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Danke-Seiten */
.danke-icon {
    width: 78px;
    height: 78px;
    background: var(--dark2);
    border: 2px solid var(--gold-d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: var(--shadow-md);
}

.danke-icon svg { width: 44px; height: 44px; fill: var(--gold); }

.danke-title {
    font-size: 2.2em;
    color: var(--gold-dk);
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
}

.danke-text {
    font-size: 1.05em;
    font-weight: 300;
    color: var(--text);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 16px;
}

/* Buchung hero box */
.buchung-price-box {
    background: var(--cream);
    padding: 32px 36px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    border-left: 4px solid var(--gold-d);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.buchung-price-amount {
    font-size: 3em;
    color: var(--gold-d);
    font-weight: 700;
    text-align: center;
    margin: 14px 0 8px;
    line-height: 1;
}

.buchung-price-note {
    text-align: center;
    font-size: .98em;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 22px;
    line-height: 1.65;
}

.buchung-features {
    list-style: none;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
}

.buchung-features li {
    padding: 7px 0;
    font-size: .98em;
    font-weight: 300;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.buchung-pay-btn {
    display: inline-block;
    background: var(--dark2);
    color: var(--gold);
    border: 1px solid var(--gold-d);
    padding: 17px 42px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .25s ease;
    box-shadow: var(--shadow-md);
}

.buchung-pay-btn:hover {
    background: var(--gold-dk);
    color: var(--cream);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
    body.page-simple { padding: 20px 12px; }
    .page-hero, .page-body { padding-left: 28px; padding-right: 28px; }
    .page-hero h1 { font-size: 1.4em; }
    .buchung-price-amount { font-size: 2.4em; }
}
