/*
Theme Name: all.DIGITAL Child
Theme URI: https://all.digital
Description: Modern Agency Theme. High contrast, sharp, professional.
Author: all.DIGITAL
Version: 3.0.0
*/

:root {
    /* Agency Palette */
    --color-bg-main: #000000;
    --color-bg-card: #0A0A0A;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #888888;
    --color-accent: #333333;
    --color-highlight: #FFFFFF;
    --color-border: #222222;

    /* Typography */
    --font-main: 'Inter', Helvetica, Arial, sans-serif;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 20px;
    --spacing-lg: 32px;
    /* Reduced from 40 */
    --spacing-section: 100px;
    /* Condensed sections */

    /* Agency UI Tokens */
    --radius-sm: 2px;
    --border-width: 1px;
}

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

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(40px, 5vw, 72px);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 60ch;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--color-highlight);
    color: #000000;
    border: 1px solid var(--color-highlight);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-highlight);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    border-color: var(--color-highlight);
}

/* Cards (Sleeker) */
.card {
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 32px;
    border-radius: var(--radius-sm);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: #444;
}

/* Pricing Grid Specifics */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    /* Connected borders look */
    border: 1px solid var(--color-border);
}

.card-price {
    background: transparent;
    border: none;
    border-right: 1px solid var(--color-border);
    border-radius: 0;
    padding: 40px;
    text-align: left;
    /* Align left as per image usually looks better */
}

.card-price:last-child {
    border-right: none;
}

.card-price:hover {
    background: #080808;
    transform: none;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px 0;
    color: var(--color-text-primary);
}

.feature-list {
    list-style: none;
    margin: 20px 0 40px 0;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li::before {
    content: "✓";
    color: var(--color-text-primary);
}

/* Responsive Pricing */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        border: none;
        gap: 24px;
    }

    .card-price {
        border: 1px solid var(--color-border);
        border-right: 1px solid var(--color-border);
    }
}

/* Header */
.site-header {
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
}

.nav-links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.6;
}

.nav-links a:hover {
    opacity: 1;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
    background: #050505;
}

/* Utilities */
.section-py {
    padding: var(--spacing-section) 0;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}