/* ============================================================
   ARANIKO AI UNIFIED CENTRAL CSS

   This unified file supports:
   - Dashboard UI
   - Agent management UI
   - Pricing modal
   - Landing page sections
   - Hero components
   - CTA sections
   - Footer
   - Responsive layouts
   ============================================================ */

/* ============================================================
   ARANIKO AI RESET & BASE
   ============================================================ */


:root {
    --ink: #111827;
    --white: #ffffff;
    --grey-50: #f9fafb;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;
    --grey-300: #d1d5db;
    --grey-400: #9ca3af;
    --grey-500: #6b7280;
    --grey-600: #4b5563;
    --grey-700: #374151;
    --accent: #111827;
    /* --display:  'Syne', sans-serif; */
    --body: 'Lora', Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    margin: 0;
}

a {
    color: #111827;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 12px;
    line-height: 1.25;
    font-weight: 700;
    color: #111827;
}

p {
    margin: 0 0 14px;
}

ul,
ol {
    margin: 0 0 14px;
    padding-left: 0px;
}


/* ============================================================
   HEADER / NAV
   ============================================================ */
#masthead,
.site-header,
header.site-header {
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-branding .custom-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.site-title,
.site-branding .site-title a {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.header-inner,
.site-header .container,
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
}

.main-navigation ul,
.secondary-navigation ul,
nav.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-navigation ul li a,
.secondary-navigation ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.15s;
}

.main-navigation ul li a:hover,
.secondary-navigation ul li a:hover {
    color: #000;
}

.main-navigation ul li.nav-register a {
    background: #000;
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
}

.main-navigation ul li.nav-register a:hover {
    background: #222;
    text-decoration: none;
}

/* Login state nav switching */
body.logged-in-user #site-navigation.main-navigation {
    display: none !important;
}

body.logged-in-user #secondary-navigation.secondary-navigation {
    display: block !important;
}

body.logged-out-user #site-navigation.main-navigation {
    display: block !important;
}

body.logged-out-user #secondary-navigation.secondary-navigation {
    display: none !important;
}


/* ============================================================
   MOBILE DRAWER (NEW ADDITION ONLY)
   ============================================================ */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #111;
}

/* overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 9998;
}

/* drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.25s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* active states */
body.drawer-open .mobile-drawer {
    right: 0;
}

body.drawer-open .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

/* drawer header */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.drawer-menu {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drawer-menu a {
    text-decoration: none;
    font-size: 15px;
    color: #111827;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

    .nav-menu {
        display: none !important; /* hide desktop menu */
    }

    .mobile-menu-toggle {
        display: block;
    }

    #main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.btn-primary,
.button.button-primary,
input[type="submit"].button-primary,
a.btn-primary {
    display: inline-block;
    background: #000000;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.15s;
    letter-spacing: 0.01em;
}

.btn-primary:hover,
.button.button-primary:hover,
input[type="submit"].button-primary:hover {
    background: #222222;
    text-decoration: none !important;
}

/* ============================================================
   PRICING TABLE (public + modal)
   ============================================================ */
.aranikoai-modal-content2,
.pricing-table-wrap {
    text-align: center;
}

.aranikoai-modal-content2 table,
.pricing-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #111827;
    margin-top: 20px;
    text-align: center;
}

.aranikoai-modal-content2 table th,
.aranikoai-modal-content2 table td,
.pricing-table-wrap table th,
.pricing-table-wrap table td {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
}

.aranikoai-modal-content2 table p {
    margin: 0 0 5px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

a.aranikoai-upgrade-btn {
    display: inline-block;
    float: none;
    width: 100%;
    background: #000;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 10px;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    transition: background 0.15s;
    text-align: center;
}

a.aranikoai-upgrade-btn:hover {
    background: #333;
    text-decoration: none;
}

/* WhatsApp CTA */
a.sleek-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
}

a.sleek-whatsapp-btn:hover {
    background: #1ebe5d;
    text-decoration: none;
}

/* ============================================================
   LOGGED-IN DASHBOARD â€” stats strip
   ============================================================ */
.aranikoai-dashboard {
    width: 100%;
    max-width: 1200px;
    color: #2c3e50;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px 16px;
    align-items: start;
    padding: 10px 0 !important;
    margin-bottom: 20px;
}

.aranikoai-dashboard .item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    min-height: 120px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.aranikoai-dashboard .item.item_last {
    padding: 0;
    width: 100%;
    display: grid;
    border: none;
    background: none;
}

.aranikoai-dashboard .icon {
    font-size: 1.5rem;
    color: #000;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
    margin-top: -10px;
}

.aranikoai-dashboard .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.aranikoai-dashboard .content p {
    font-size: 10px;
    margin: 0;
    color: #6b7280;
}

.aranikoai-dashboard .label {
    font-weight: 600;
    font-size: 15px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 4px;
}

.aranikoai-dashboard .value {
    font-family: monospace, monospace;
    font-size: 14px;
    line-height: 1.4;
    color: #1a202c;
    word-break: break-word;
}

/* Upgrade plan button (in dashboard item_last) */
button#aranikoai-upgrade-btn {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
    text-align: center;
}

button#aranikoai-upgrade-btn:hover {
    background: #333;
}

/* ============================================================
   UPGRADE MODAL
   ============================================================ */
.aranikoai-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.aranikoai-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    width: 92%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.aranikoai-modal-content h2 {
    font-size: 20px;
    font-weight: 100;
    margin-bottom: 0;
    text-align: center;
}

.aranikoai-modal-content p {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 10px;
}

div#aranikoai-modal table {
    font-size: 12px;
    color: #000;
    border: none;
    margin-top: 20px;
}

.aranikoai-modal-overlay button.aranikoai-upgrade-btn {
    margin-bottom: 10px;
    font-size: 12px;
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* ============================================================
   AGENT SECTION â€” API KEY + ADD BUTTON
   ============================================================ */
.aranikoai-section>p:first-child {
    font-size: 13px;
    background: #f3f4f6;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    margin-bottom: 14px;
    display: inline-block;
}

.aranikoai-section>p code,
code {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: 12px;
    color: #111827;
}

.aranikoai-section h3 {
    font-size: 20px;
    font-weight: 300;
}

.button-add-new,
#aranikoai-add-new-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #000;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin: 20px 0;
    transition: background 0.15s;
    text-decoration: none;
}

.button-add-new:hover,
#aranikoai-add-new-btn:hover {
    background: #333;
    text-decoration: none;
}

.button-add-new img.emoji {
    background: #fff !important;
    padding: 2px !important;
    border-radius: 10px;
}

/* ============================================================
   AGENT ACCORDION LIST
   ============================================================ */
.aranikoai-accordion {
    margin-bottom: 40px;
}

.aranikoai-accordion .accordion-header {
    background: #f5f5f5;
    padding: 15px;
    font-weight: 200;
    cursor: pointer;
    border: 1px solid #ddd;
    margin-top: 10px;
    min-height: 140px;
    transition: background 0.1s;
    border-radius: 10px;
}

.aranikoai-accordion .accordion-header:hover {
    background: #f0f0f0;
}

.aranikoai-accordion .accordion-header img {
    float: left;
    width: 30px;
    margin-right: 20px !important;
    display: block;
}

.aranikoai-accordion .accordion-content {
    border: 1px solid #ddd;
    border-top: none;
    padding: 10px;
    display: none;
    background: #fff;
}

.aranikoai-accordion .accordion-content.open {
    display: block;
}

.aranikoai-accordion .accordion-header span.ai_btn {
    float: left;
    font-size: 10px;
    background: none;
    color: #000;
    padding: 2px 13px;
    margin-right: 10px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid #000;
    margin-top: 3px;
}

.accordion-header a.edit_agent_btn {
    font-size: 10px;
    background: #555;
    padding: 5px 10px;
    border-radius: 15px;
    color: #fff !important;
    margin-bottom: 10px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s;
}

.accordion-header a.edit_agent_btn:hover {
    background: #000;
    text-decoration: none;
}

.accordion-header a.edit_agent_btn.preview {
    background: #000;
    color: #fff !important;
}

/* Meta connection status badge */
.araniko-meta-status {
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin: 15px 0;
    color: #374151;
}

/* Agent detail table */
.agent-details {
    font-size: 14px;
    color: #444;
}

.agent-details table {
    width: 100%;
    border-collapse: collapse;
}

.agent-details table td {
    padding: 5px 8px;
    vertical-align: top;
    border-bottom: 1px solid #f3f4f6;
}

.agent-details .code-block,
.code-block {
    background: #f4f4f4;
    border: 1px solid #ccc;
    padding: 10px;
    font-family: monospace;
    color: green;
    word-break: break-word;
    font-size: 11px;
    margin-top: 10px;
}

/* ============================================================
   ADD NEW AGENT FORM (fixed overlay)
   ============================================================ */
#aranikoai-form {
    display: none;
    border: 1px solid #ccc;
    position: fixed;
    z-index: 9999 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3% 10%;
    background: #fff;
    overflow-y: auto;
    font-size: 14px;
    color: #000 !important;
    box-sizing: border-box;
}

#aranikoai-form hr {
    float: left;
    margin: 35px 0;
    width: 100%;
}

#aranikoai-form h4 {
    float: left;
    width: 100%;
    padding: 0 10px;
}

#aranikoai-form h4 small {
    font-size: 15px;
    font-weight: 100;
    color: black;
    border: 1px dashed #000;
    padding: 5px 10px;
}

#aranikoai-form h3 {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

#aranikoai-form form {
    float: left;
    width: 100%;
}

#aranikoai-form p.instructions {
    font-size: 12px;
    margin: 15px 10px;
    background: #eee;
    padding: 15px;
    border-radius: 10px;
    color: #333;
    width: 98%;
    float: left;
}

div#aranikoai-form p.haff {
    width: 48%;
    float: left;
    margin: 0;
    min-height: 90px;
    padding: 0 10px;
}

div#aranikoai-form p {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0 10px;
}

div#aranikoai-form p.haff input,
div#aranikoai-form p.haff select {
    width: 96%;
    float: left;
    padding: 5px;
    font-size: 12px;
    height: 35px;
    border-radius: 10px;
    border: #ccc solid 1px;
    margin-top: 5px;
}

div#aranikoai-form textarea {
    width: 96%;
    float: left;
    font-size: 12px;
    margin-bottom: 15px;
    min-height: 100px;
    border: #ccc solid 1px;
    margin-top: 10px;
    border-radius: 10px;
    padding: 2%;
}

div#aranikoai-form p.haff.brand_logo input[type="file"] {
    border: none;
}

div#aranikoai-form .kb-progressbar {
    margin: 15px 0;
    font-weight: 600;
    padding: 10px;
    float: left;
    width: 100%;
}

div#aranikoai-form .kb-progressbarout {
    background: #eee;
    height: 6px;
    border-radius: 4px;
    margin-top: 4px;
}

div#aranikoai-form #kb-progress-bar,
#kb-progress-bar {
    height: 6px;
    width: 0%;
    background: #4CAF50;
    border-radius: 4px;
    transition: width 0.3s;
}

button#aranikoai-add-close-btn {
    float: right;
    margin: -10px 0 0 0 !important;
    font-size: 12px;
}

/* ============================================================
   EDIT AGENT FORM
   ============================================================ */
h1.edit_agent_title {
    font-size: 30px;
    font-weight: 500;
}

form.edit_agent_form {
    float: left;
    width: 100%;
    display: block;
}

form.edit_agent_form p.haff {
    float: left;
    width: 32.3%;
    margin: 0.5%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 13px;
    min-height: 170px;
}

form.edit_agent_form p.fullll {
    float: left;
    width: 100%;
    margin-top: 10px;
}

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

form.edit_agent_form p.haff input,
form.edit_agent_form p.haff select {
    width: 100%;
    font-size: 12px;
    padding: 5px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form.edit_agent_form p.fullll textarea {
    min-height: 500px;
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
}

input.button.button-primary.save_agent_btn {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 500;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   META CONNECT UI
   ============================================================ */
.araniko-meta-connect {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-align: left;
    margin-bottom: 16px;
}

.araniko-meta-connect h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.araniko-meta-connect p {
    margin: 6px 0 12px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.araniko-meta-connect .button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.araniko-meta-connect .button-primary {
    background: #2563eb;
    color: #ffffff;
    border: none;
}

.araniko-meta-connect .button-primary:hover {
    background: #1d4ed8;
}

.araniko-meta-connect .button-secondary {
    background: #f9fafb;
    color: #111827;
    border: 1px solid #d1d5db;
}

.araniko-meta-connect .button-secondary:hover {
    background: #f3f4f6;
}

.araniko-meta-connect ul {
    padding-left: 0;
    list-style: none;
    margin: 16px 0;
}

.araniko-meta-connect li {
    margin-bottom: 10px;
}

#araniko-meta-status,
#araniko-meta-disconnect-status {
    margin-top: 10px;
    font-size: 14px;
}

.araniko-meta-connect table.widefat {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    background: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
}

.araniko-meta-connect table.widefat th,
.araniko-meta-connect table.widefat td {
    padding: 10px 12px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.araniko-meta-connect table.widefat th {
    width: 200px;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    text-align: left;
}

.araniko-meta-connect table.widefat td {
    color: #111827;
}

.araniko-meta-connect table.widefat tr:last-child th,
.araniko-meta-connect table.widefat tr:last-child td {
    border-bottom: none;
}

.araniko-meta-connect em {
    color: #6b7280;
    font-style: normal;
}

/* ============================================================
   LEADS
   ============================================================ */
.lead-card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 13px;
    background: #fdfdfd;
}

.lead-card>div {
    line-height: 1.5;
}

.lead-card h4 {
    margin: 0 0 6px;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.keyword-btn {
    display: inline-block;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 3px 10px;
    margin: 2px 3px 2px 0;
    font-size: 12px;
    color: #333;
}

/* ============================================================
   CONVERSATIONS TABLE
   ============================================================ */
table.user-conversations-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
}

table.user-conversations-table th,
table.user-conversations-table td {
    border: 1px solid #ddd;
    padding: 8px;
    vertical-align: top;
}

table.user-conversations-table th {
    background-color: #f4f4f4;
    text-align: left;
}

table.user-conversations-table .convo_item {
    float: left;
    width: 50%;
    font-size: 12px;
    padding: 0 5px 0 0;
}

/* ============================================================
   POPUP
   ============================================================ */
#popup-overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#popup-content {
    background: #fff;
    max-width: 700px;
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    white-space: pre-wrap;
    font-family: monospace;
}

#popup-close {
    cursor: pointer;
    color: #aaa;
    font-size: 24px;
    float: right;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ============================================================
   UM FORMS
   ============================================================ */
.um-form input#um-submit-btn {
    background: #000;
}

/* ============================================================
   DEBUG PANEL
   ============================================================ */
#araniko-debug-panel {
    position: fixed;
    bottom: 12px;
    right: 12px;
    width: 360px;
    max-height: 40vh;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    border-radius: 10px;
    font-family: monospace;
    font-size: 12px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
}

#araniko-debug-header {
    padding: 8px 10px;
    background: #111;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}

#araniko-debug-body {
    padding: 8px;
    overflow-y: auto;
    background: #fafafa;
}

.araniko-debug-row {
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #ddd;
}

.araniko-debug-time {
    color: #888;
    font-size: 11px;
}

.araniko-debug-label {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    background: #eee;
    font-size: 10px;
    margin-right: 4px;
}

.araniko-debug-label.ERROR {
    background: #ffdddd;
    color: #900;
}

.araniko-debug-label.WARN {
    background: #fff4cc;
    color: #9a6a00;
}

.araniko-debug-label.INFO {
    background: #e7f0ff;
    color: #0047b3;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .aranikoai-dashboard {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .aranikoai-dashboard {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lead-card {
        grid-template-columns: repeat(2, 1fr);
    }

    form.edit_agent_form p.haff {
        width: 49%;
    }
}

@media (max-width: 580px) {
    .aranikoai-accordion .accordion-header {
        min-height: 190px;
    }

    div#aranikoai-form p.haff {
        width: 100%;
    }

    form.edit_agent_form p.haff {
        float: left;
        width: 100%;
        border: solid 1px #ccc;
        margin: 0.5% 0;
        padding: 10px;
        min-height: 150px;
    }

    .lead-card {
        grid-template-columns: repeat(1, 1fr);
    }

    .elementor-shortcode {
        overflow-x: scroll;
    }

    table.user-conversations-table .convo_item {
        float: left;
        width: 100%;
        font-size: 12px;
        padding: 0 5px 0 0;
    }

    .araniko-meta-connect table.widefat th {
        width: 140px;
    }

    .araniko-meta-connect {
        padding: 16px;
    }
}

@media (max-width: 500px) {
    .aranikoai-dashboard {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aranikoai-dashboard .item {
        gap: 8px;
        padding: 8px;
    }
}
.araniko-app-container {
    padding: 100px 20px 50px 20px;
    display: flex;
}
.araniko-app-container-home {
    padding: 0px 20px 50px 20px;
}
.araniko-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}









/* ============================================================
   LANDING PAGE CSS FROM araniko-ai-landing-v2.html
   ============================================================ */

.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 20px;
}

.label-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--grey-400);
}

.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* â”€â”€ NAV â”€â”€ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    height: 68px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--grey-200);
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--ink);
    border-radius: 50%;
    margin-left: 2px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.nav-right {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-right ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-right ul li {
    margin: 0;
    padding: 0;
}

.nav-right ul li a {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-500);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-right ul li a:hover {
    color: var(--ink);
}

.nav-center a {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-500);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-center a:hover {
    color: var(--ink);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-500);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-login:hover {
    color: var(--ink);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    background: var(--ink);
    color: var(--white);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
    margin-left: 20px;
}

.nav-btn:hover {
    background: var(--grey-700);
    transform: translateY(-1px);
    color: #fff;
}

/* â”€â”€ HERO â”€â”€ */
.hero {
    padding: 148px 56px 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}
section.hero.mission_vision_hero {
    padding: 56px 96px;
}
section.hero.mission_vision_hero h2 {
    font-size: 45px;
}
section.hero.hero_infoo {
    grid-template-columns: 1fr;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-500);
    border: 1px solid var(--grey-200);
    padding: 6px 14px 6px 6px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 20px;
    height: 20px;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-eyebrow-dot::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2px;
    color: var(--ink);
    margin-bottom: 24px;
}

.hero h1 .italic-line {
    font-family: var(--body);
    font-style: italic;
    font-weight: 400;
    color: var(--grey-500);
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 17px;
    color: var(--grey-500);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: #fff;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
}

.btn-dark:hover {
    background: var(--grey-700);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--grey-200);
    color: var(--grey-600);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.hero-social-proof {
    margin-top: 52px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 36px;
    border-top: 1px solid var(--grey-100);
}

.avatars {
    display: flex;
}

.avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    color: var(--grey-600);
    margin-left: -8px;
}

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

.proof-text {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-500);
}

.proof-text strong {
    color: var(--ink);
}

/* â”€â”€ HERO RIGHT PANEL â”€â”€ */
.hero-right {
    position: relative;
}

.benefit-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.5s ease forwards;
}

.benefit-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px) translateX(0);
    border-color: var(--grey-300);
}

.benefit-card:nth-child(1) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.65s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.9s;
}

.benefit-card:nth-child(4) {
    animation-delay: 1.15s;
}

.benefit-card.highlight {
    background: var(--ink);
    border-color: var(--ink);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-card.highlight .bc-icon {
    background: rgba(255, 255, 255, 0.12);
}

.bc-body {}

.bc-title {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.benefit-card.highlight .bc-title {
    color: #fff;
}

.bc-desc {
    font-family: var(--display);
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.5;
}

.benefit-card.highlight .bc-desc {
    color: rgba(255, 255, 255, 0.55);
}

.bc-metric {
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
}

.bc-num {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.benefit-card.highlight .bc-num {
    color: #fff;
}

.bc-unit {
    font-family: var(--display);
    font-size: 11px;
    color: var(--grey-400);
    letter-spacing: 0.05em;
}

.benefit-card.highlight .bc-unit {
    color: rgba(255, 255, 255, 0.4);
}

/* â”€â”€ SECTION WRAPPER â”€â”€ */
.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 56px;
}

.section-header {
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--display);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 16px;
    max-width: 640px;
}

.section-header h2 em {
    font-family: var(--body);
    font-style: italic;
    font-weight: 400;
    color: var(--grey-400);
}

.section-header p {
    font-size: 17px;
    color: var(--grey-500);
    max-width: 520px;
    line-height: 1.75;
}

/* â”€â”€ OWNER BENEFITS â”€â”€ */
.benefits-section {
    background: var(--grey-50);
}

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

.benefit-big {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 20px;
    padding: 40px 36px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.benefit-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-big:hover::before {
    transform: scaleX(1);
}

.benefit-big:hover {
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.bb-number {
    font-family: var(--display);
    font-size: 72px;
    font-weight: 800;
    color: var(--grey-500);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.bb-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.bb-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.bb-desc {
    font-size: 15px;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bb-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    color: var(--grey-600);
    letter-spacing: 0.03em;
}

/* â”€â”€ COMPARISON â”€â”€ */
.comparison-section {
    background: var(--white);
}

.compare-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:1.1fr 1fr 1fr;
    gap:5px;
    align-items:stretch;
}

.compare-head{
    padding:18px 20px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.feature-head{
    background:#f3f4f6;
    color:#111827;
}

.old-head{
    background:#fff4f4;
    color:#991b1b;
}

.ai-head{
    background:#111827;
    color:#fff;
}

.compare-feature{
    background:#fff;
    border:1px solid #e5e7eb;
    padding:15px;
    font-size:14px;
    font-weight:600;
    line-height:1.4;
    display:flex;
    align-items:center;
    max-height: 10px;
}

.compare-box{
    padding:15px;
    font-size:14px;
    font-weight:400;
    line-height:1.6;
    display:flex;
    align-items:center;
    font-weight:600;
    max-height: 10px;
}

.compare-box.old{
    background:#fff5f5;
    color:#7f1d1d;
    padding:15px;
    font-size:14px;
    font-weight:400;
    border: 1px solid #f4c5c5;
}

.compare-box.ai{
    background:#f3fff4;
    color:#166534;
    border:1px solid #bbf7d0;
    font-size:14px;
    font-weight:400;
}

/* MOBILE */
@media(max-width:768px){

    .compare-grid{
        grid-template-columns:1fr;
        gap:5px;
    }

    .compare-head{
        display:none;
    }

    .compare-feature{
        padding:18px 20px 10px;
        border-bottom:none;
        font-size:17px;
    }

    .compare-box{
        border-radius:0;
        padding:16px 20px;
        font-size:15px;
    }

    .compare-box.old{
        border-radius:0;
    }

    .compare-box.ai{
        
        margin-bottom:18px;
    }

    .compare-box::before{
        display:block;
        font-size:11px;
        font-weight:700;
        text-transform:uppercase;
        letter-spacing:.08em;
        margin-bottom:0px;
        opacity:.7;
        margin-right: 6px;
    }

    .compare-box.old::before{
        content:"Old Way";
    }

    .compare-box.ai::before{
        content:"With Araniko AI";
    }
}


/* â”€â”€ ROI CALCULATOR â”€â”€ */
.roi-section {
    background: var(--grey-50);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.roi-input-group label {
    display: block;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--grey-600);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.roi-slider-wrap {
    position: relative;
}

input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    background: var(--grey-200);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.range-value {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.roi-result-card {
    background: var(--ink);
    color: #fff;
    border-radius: 20px;
    padding: 48px 44px;
}

.roi-result-title {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 32px;
}

.roi-result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.roi-result-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.roi-result-row-label {
    font-family: var(--display);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.roi-result-row-value {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.roi-big-num {
    font-family: var(--display);
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    margin: 28px 0 8px;
}

.roi-big-label {
    font-family: var(--display);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 28px;
}

.roi-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

/* â”€â”€ STEPS â”€â”€ */
.steps-section {
    background: var(--white);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 52px 0;
    border-bottom: 1px solid var(--grey-100);
    transition: background 0.2s;
}

.step-row:first-child {
    padding-top: 0;
}

.step-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-num-big {
    font-family: var(--display);
    font-size: 72px;
    font-weight: 800;
    color: var(--grey-100);
    letter-spacing: -4px;
    line-height: 1;
    padding-top: 4px;
}

.step-content-main {}

.step-title {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.step-desc {
    font-size: 15px;
    color: var(--grey-500);
    line-height: 1.7;
}

.step-detail {
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 24px;
}

.step-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 500;
    color: var(--grey-600);
    margin-bottom: 12px;
}

.step-detail-item:last-child {
    margin-bottom: 0;
}

.step-detail-item::before {
    content: '●';
    color: var(--grey-400);
    flex-shrink: 0;
}

/* â”€â”€ FEATURES â”€â”€ */
.features-section {
    background: var(--grey-50);
}

.features-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.feat {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 16px;
    padding: 32px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feat:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.feat.wide {
    grid-column: span 2;
}

.feat.dark {
    background: var(--ink);
    border-color: var(--ink);
    grid-column: span 2;
}

.feat-icon {
    font-size: 26px;
    margin-bottom: 16px;
}

.feat-title {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.feat.dark .feat-title {
    color: #fff;
}

.feat-desc {
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.65;
}

.feat.dark .feat-desc {
    color: rgba(255, 255, 255, 0.5);
}

.feat.dark .feat-icon {
    color: #fff;
}

.feat-channels {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.channel-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--grey-200);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    color: var(--grey-600);
}

/* â”€â”€ PRICING â”€â”€ */
.pricing-section {
    background: var(--white);
}

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 56px;
}

.toggle-label {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-500);
}

.toggle-track {
    width: 48px;
    height: 26px;
    background: var(--grey-200);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}

.toggle-track.on {
    background: var(--ink);
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.toggle-track.on .toggle-thumb {
    transform: translateX(22px);
}

.save-chip {
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
    padding: 4px 10px;
    border-radius: 100px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    color: var(--grey-600);
    letter-spacing: 0.04em;
}

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

.price-card {
    border: 1px solid var(--grey-200);
    border-radius: 20px;
    padding: 40px 36px;
    background: var(--white);
    position: relative;
    transition: box-shadow 0.2s;
}

.price-card:hover {
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.07);
}

.price-card.featured {
    background: var(--ink);
    border-color: var(--ink);
    transform: scale(1.03);
}

.featured-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--grey-200);
    color: var(--ink);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-tier {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 20px;
}

.price-card.featured .price-tier {
    color: rgba(255, 255, 255, 0.4);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
}

.price-curr {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--grey-400);
    margin-top: 8px;
}

.price-card.featured .price-curr {
    color: rgba(255, 255, 255, 0.4);
}

.price-main {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--ink);
    line-height: 1;
}

.price-card.featured .price-main {
    color: #fff;
}

.price-period {
    font-family: var(--display);
    font-size: 13px;
    color: var(--grey-400);
    margin-bottom: 6px;
}

.price-card.featured .price-period {
    color: rgba(255, 255, 255, 0.4);
}

.price-annual-note {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    color: var(--grey-500);
    margin-bottom: 28px;
}

.price-card.featured .price-annual-note {
    color: rgba(255, 255, 255, 0.5);
}

.price-sep {
    height: 1px;
    background: var(--grey-100);
    margin-bottom: 28px;
}

.price-card.featured .price-sep {
    background: rgba(255, 255, 255, 0.1);
}

.price-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.price-feats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 500;
    color: var(--grey-600);
}

.price-card.featured .price-feats li {
    color: rgba(255, 255, 255, 0.65);
}

.price-feats li::before {
    content: '.';
    font-weight: 800;
    color: var(--ink);
    flex-shrink: 0;
}

.price-card.featured .price-feats li::before {
    color: rgba(255, 255, 255, 0.8);
}

.btn-price-light {
    display: block;
    text-align: center;
    border: 2px solid var(--grey-200);
    color: var(--ink);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-price-light:hover {
    border-color: var(--ink);
    background: var(--grey-50);
}

.btn-price-dark {
    display: block;
    text-align: center;
    background: #fff;
    color: var(--ink);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    border: 2px solid #fff;
}

.btn-price-dark:hover {
    background: var(--grey-200);
}

.pricing-footer {
    margin-top: 40px;
    text-align: center;
}

.pricing-footer p {
    font-family: var(--display);
    font-size: 14px;
    color: var(--grey-400);
}

.pricing-footer strong {
    color: var(--ink);
}

/* â”€â”€ TESTIMONIALS â”€â”€ */
.testi-section {
    background: var(--grey-50);
}

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

.testi-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 16px;
    padding: 36px;
    transition: box-shadow 0.2s;
}

.testi-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.testi-card.featured-testi {
    background: var(--ink);
    border-color: var(--ink);
    grid-row: span 2;
}

.testi-rating {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    color: var(--grey-400);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testi-card.featured-testi .testi-rating {
    color: rgba(255, 255, 255, 0.3);
}

.testi-quote {
    font-family: var(--body);
    font-style: italic;
    font-size: 16px;
    color: var(--grey-700);
    line-height: 1.65;
    margin-bottom: 28px;
}

.testi-card.featured-testi .testi-quote {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.testi-result {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 28px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.testi-card.featured-testi .testi-result {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 800;
    color: var(--grey-600);
}

.testi-card.featured-testi .testi-avatar {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.testi-name {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.testi-card.featured-testi .testi-name {
    color: #fff;
}

.testi-role {
    font-family: var(--display);
    font-size: 12px;
    color: var(--grey-400);
}

.testi-card.featured-testi .testi-role {
    color: rgba(255, 255, 255, 0.35);
}

/* â”€â”€ CTA â”€â”€ */
.cta-section {
    background: var(--ink);
    padding: 120px 56px;
    text-align: center;
}

.cta-section .label-tag {
    color: rgba(255, 255, 255, 0.35);
}

.cta-section .label-tag::before {
    background: rgba(255, 255, 255, 0.2);
}

.cta-section h2 {
    font-family: var(--display);
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 20px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section h2 em {
    font-family: var(--body);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.cta-section p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--ink);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: -0.2px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.cta-section a.btn-cta {
    margin-bottom: 20px;
}

.cta-footnote {
    margin-top: 20px;
    font-family: var(--display);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-stat-val {
    font-family: var(--display);
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
}

.cta-stat-lbl {
    font-family: var(--display);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
    font-weight: 500;
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
    background: var(--grey-50);
    border-top: 1px solid var(--grey-200);
    padding: 64px 56px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--grey-200);
}

.footer-brand-logo {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-brand-logo .dot {
    width: 8px;
    height: 8px;
    background: var(--ink);
    border-radius: 50%;
}

.footer-tagline {
    font-size: 14px;
    color: var(--grey-400);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    color: var(--grey-500);
    transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.footer-col h4 {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 18px;
}

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

.footer-col a {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--ink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--display);
    font-size: 13px;
    color: var(--grey-400);
    font-weight: 500;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 120px 32px 72px;
    }

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

    .step-row {
        grid-template-columns: 60px 1fr;
    }

    .step-detail {
        display: none;
    }

    .features-masonry {
        grid-template-columns: 1fr 1fr;
    }

    .feat.wide,
    .feat.dark {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 24px;
    }

    .nav-center {
        display: none;
    }

    .section-wrap {
        padding: 72px 24px;
    }

    .benefits-big-grid {
        grid-template-columns: 1fr;
    }

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

    .testi-card.featured-testi {
        grid-row: auto;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .cta-stats {
        flex-direction: column;
        gap: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .features-masonry {
        grid-template-columns: 1fr;
    }

    .feat.wide,
    .feat.dark {
        grid-column: span 1;
    }

    footer {
        padding: 48px 24px 32px;
    }

    .cta-section {
        padding: 80px 24px;
    }
}